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/include/prot.h | |
parent | 66404f0bfbd78e635ff6381ca30b25157e0e1a09 (diff) |
fix deprecated prototypes
Diffstat (limited to 'src/include/prot.h')
-rw-r--r-- | src/include/prot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/prot.h b/src/include/prot.h index 08203da..7dd0503 100644 --- a/src/include/prot.h +++ b/src/include/prot.h @@ -1,7 +1,7 @@ #ifndef PROT_H #define PROT_H -int prot_gid(); -int prot_uid(); +extern int prot_gid(int); +extern int prot_uid(int); #endif |