From 4a6303ba3b64504ab0077b9cfebd2a4b918d531d Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Wed, 8 Jun 2011 02:10:38 +0200 Subject: Constify bsd_getopt(3) arguments This matches the standard declaration for getopt(3). --- include/bsd/unistd.h | 2 +- src/bsd_getopt.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/bsd/unistd.h b/include/bsd/unistd.h index 1c4e579..edb0ec5 100644 --- a/include/bsd/unistd.h +++ b/include/bsd/unistd.h @@ -49,7 +49,7 @@ extern int optreset; #define getopt(argc, argv, optstr) bsd_getopt(argc, argv, optstr) #endif -int bsd_getopt(int, char **, char *); +int bsd_getopt(int argc, char * const argv[], const char *shortopts) mode_t getmode(const void *set, mode_t mode); void *setmode(const char *mode_str); diff --git a/src/bsd_getopt.c b/src/bsd_getopt.c index 3e89817..b5bd270 100644 --- a/src/bsd_getopt.c +++ b/src/bsd_getopt.c @@ -29,7 +29,7 @@ int optreset = 0; int -bsd_getopt(int argc, char **argv, char *shortopts) +bsd_getopt(int argc, char * const argv[], const char *shortopts) { if (optreset == 1) { optreset = 0; -- cgit v1.2.3