Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/coreutils/hostid.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 532 by niro, Sat Sep 1 22:45:15 2007 UTC revision 816 by niro, Fri Apr 24 18:33:46 2009 UTC
# Line 9  Line 9 
9    
10  /* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */  /* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
11    
12  #include <stdlib.h>  #include "libbb.h"
 #include <unistd.h>  
 #include "busybox.h"  
13    
14  int hostid_main(int argc, char ATTRIBUTE_UNUSED **argv)  /* This is a NOFORK applet. Be very careful! */
15    
16    int hostid_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
17    int hostid_main(int argc, char **argv UNUSED_PARAM)
18  {  {
19   if (argc > 1) {   if (argc > 1) {
20   bb_show_usage();   bb_show_usage();
# Line 21  int hostid_main(int argc, char ATTRIBUTE Line 22  int hostid_main(int argc, char ATTRIBUTE
22    
23   printf("%lx\n", gethostid());   printf("%lx\n", gethostid());
24    
25   fflush_stdout_and_exit(EXIT_SUCCESS);   return fflush(stdout);
26  }  }

Legend:
Removed from v.532  
changed lines
  Added in v.816