Changeset 170 for trunk/src/sh_getopt.c
- Timestamp:
- Apr 30, 2008, 11:56:45 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sh_getopt.c
r169 r170 52 52 53 53 typedef struct options { 54 c har * longopt;54 const char * longopt; 55 55 const char shortopt; 56 c har * usage;56 const char * usage; 57 57 int hasArg; 58 58 int (*func)(const char * opt); … … 313 313 314 314 315 static void sh_getopt_print_log_facilities ( )315 static void sh_getopt_print_log_facilities (void) 316 316 { 317 317 fputs (_("Compiled-in log facilities:"), stdout); … … 372 372 } 373 373 374 static void sh_getopt_print_options ( )374 static void sh_getopt_print_options (void) 375 375 { 376 376 int num = 0; … … 484 484 } 485 485 486 static void sh_getopt_print_modules ( )486 static void sh_getopt_print_modules (void) 487 487 { 488 488 #if defined (SH_WITH_CLIENT) || defined (SH_STANDALONE) … … 686 686 static int sh_getopt_forever (const char * dummy) 687 687 { 688 dummy = (void *) dummy;688 (void) dummy; 689 689 SL_ENTER(_("sh_getopt_forever")); 690 690 sh.flag.loop = S_TRUE;
Note:
See TracChangeset
for help on using the changeset viewer.