}
-static void removeFifo()
+static void removeFifo(void)
{
debug("Removing FIFO \"%s\"\n", fd.path);
if (unlink(fd.path) < 0) {
}
-static void closeFifo()
+static void closeFifo(void)
{
struct stat st;
if (fd.input >= 0) {
removeFifo();
}
-static int makeFifo()
+static int makeFifo(void)
{
if (mkfifo(fd.path, 0666) < 0) {
error("Couldn't create FIFO \"%s\": %s\n", fd.path, strerror(errno));
}
-static int checkFifo()
+static int checkFifo(void)
{
struct stat st;
if (stat(fd.path, &st) < 0) {
}
-static int openFifo()
+static int openFifo(void)
{
if (checkFifo() < 0)
return -1;