diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-02-24 06:53:53 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2004-02-24 06:53:53 +0000 |
commit | 2622eaeca67edd0ff23ff34fc65b8db1f1d2fe83 (patch) | |
tree | 24940854db730ba3cb7b555d7ae6349233145579 /source4/lib/popt/popt.c | |
parent | 2027b1922b01d3b6af17d24ae51d33cc7048d27d (diff) | |
download | samba-2622eaeca67edd0ff23ff34fc65b8db1f1d2fe83.tar.gz samba-2622eaeca67edd0ff23ff34fc65b8db1f1d2fe83.tar.bz2 samba-2622eaeca67edd0ff23ff34fc65b8db1f1d2fe83.zip |
make proto should not catch any function of the lib/popt/*.c stuff
metze
(This used to be commit ec96914c66573ae54f4fa0a706001f5b91c61075)
Diffstat (limited to 'source4/lib/popt/popt.c')
-rw-r--r-- | source4/lib/popt/popt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/popt/popt.c b/source4/lib/popt/popt.c index 2aa80a7b7c..a607f19f2f 100644 --- a/source4/lib/popt/popt.c +++ b/source4/lib/popt/popt.c @@ -99,7 +99,7 @@ static void cleanOSE(struct optionStackEntry *os) } } -void poptResetContext(poptContext con) + void poptResetContext(poptContext con) { int i; @@ -400,7 +400,7 @@ static void poptStripArg(poptContext con, int which) } /* returns 'val' element, -1 on last item, POPT_ERROR_* on error */ -int poptGetNextOpt(poptContext con) + int poptGetNextOpt(poptContext con) { const struct poptOption * opt = NULL; int done = 0; |