diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-08 13:24:39 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-08 13:24:39 +0200 |
commit | 973ae30e7c4f7a1afb385dd3d8eeea178f981445 (patch) | |
tree | 1a5d8be5b3ff273a141b6144bf3031b1bc3deb2d /src/qmail-start.c | |
parent | 66404f0bfbd78e635ff6381ca30b25157e0e1a09 (diff) |
fix deprecated prototypes
Diffstat (limited to 'src/qmail-start.c')
-rw-r--r-- | src/qmail-start.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qmail-start.c b/src/qmail-start.c index d6a90a8..c80761b 100644 --- a/src/qmail-start.c +++ b/src/qmail-start.c @@ -17,7 +17,7 @@ char *(qlargs[]) = {"qmail-lspawn", "./Mailbox", 0}; char *(qrargs[]) = {"qmail-rspawn", 0}; char *(qtargs[]) = {"qmail-todo", 0}; -void die() +static void die() { _exit(111); } @@ -34,7 +34,7 @@ int pi8[2]; int pi9[2]; int pi10[2]; -void closefds() +static void closefds() { close(2); close(3); @@ -45,7 +45,7 @@ void closefds() close(8); } -void closepipes() +static void closepipes() { close(pi1[0]); close(pi1[1]); |