Magellan Linux

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

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

revision 815 by niro, Sat Sep 1 22:45:15 2007 UTC revision 816 by niro, Fri Apr 24 18:33:46 2009 UTC
# Line 8  Line 8 
8   */   */
9    
10  /* BB_AUDIT SUSv3 compliant */  /* BB_AUDIT SUSv3 compliant */
11  /* http://www.opengroup.org/onlinepubs/007904975/utilities/false.html */  /* http://www.opengroup.org/onlinepubs/000095399/utilities/false.html */
12    
13  #include <stdlib.h>  #include "libbb.h"
 #include "busybox.h"  
14    
15  int false_main(int ATTRIBUTE_UNUSED argc, char ATTRIBUTE_UNUSED **argv)  /* This is a NOFORK applet. Be very careful! */
16    
17    int false_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
18    int false_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
19  {  {
20   return EXIT_FAILURE;   return EXIT_FAILURE;
21  }  }

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