Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/coreutils/sync.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 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 sync_main(int argc, char **argv)  /* This is a NOFORK applet. Be very careful! */
15    
16    int sync_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
17    int sync_main(int argc, char **argv UNUSED_PARAM)
18  {  {
19     /* coreutils-6.9 compat */
20   bb_warn_ignoring_args(argc - 1);   bb_warn_ignoring_args(argc - 1);
21    
22   sync();   sync();

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