Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/libbb/perror_nomsg_and_die.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 11  Line 11 
11   * modified definition without "attribute (format)"   * modified definition without "attribute (format)"
12   * instead of including libbb.h */   * instead of including libbb.h */
13  //#include "libbb.h"  //#include "libbb.h"
14  extern void bb_perror_msg_and_die(const char *s, ...);  #include "platform.h"
15    extern void bb_perror_msg_and_die(const char *s, ...) FAST_FUNC;
16    
17  void bb_perror_nomsg_and_die(void)  /* suppress gcc "no previous prototype" warning */
18    void FAST_FUNC bb_perror_nomsg_and_die(void);
19    void FAST_FUNC bb_perror_nomsg_and_die(void)
20  {  {
21   bb_perror_msg_and_die(0);   bb_perror_msg_and_die(0);
22  }  }

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