X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=builtins%2Fgetopt.h;h=7a4afb160999540f9a659eb505ec9e68ba54e9a5;hb=f73dda092b33638d2d5e9c35375f687a607b5403;hp=997bfd72904b28929e5b0ebb2f369ea28e723aa0;hpb=28ef6c316f1aff914bb95ac09787a3c83c1815fd;p=platform%2Fupstream%2Fbash.git diff --git a/builtins/getopt.h b/builtins/getopt.h index 997bfd7..7a4afb1 100644 --- a/builtins/getopt.h +++ b/builtins/getopt.h @@ -20,6 +20,8 @@ #ifndef _SH_GETOPT_H #define _SH_GETOPT_H 1 +#include "stdc.h" + /* For communication from `getopt' to the caller. When `getopt' finds an option that takes an argument, the argument value is returned here. @@ -54,7 +56,7 @@ extern int sh_optopt; /* Set to 1 when an unrecognized option is encountered. */ extern int sh_badopt; -extern int sh_getopt (); -extern void sh_getopt_restore_state (); +extern int sh_getopt __P((int, char *const *, const char *)); +extern void sh_getopt_restore_state __P((char **)); #endif /* _SH_GETOPT_H */