Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/libbb/write.c

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

revision 983 by niro, Fri Apr 24 18:33:46 2009 UTC revision 984 by niro, Sun May 30 11:32:42 2010 UTC
# Line 10  Line 10 
10  #include "libbb.h"  #include "libbb.h"
11    
12  /* Open file and write string str to it, close file.  /* Open file and write string str to it, close file.
13   * Die on any open or write-error.  */   * Die on any open or write error.  */
14  void FAST_FUNC xopen_xwrite_close(const char* file, const char* str)  void FAST_FUNC xopen_xwrite_close(const char* file, const char* str)
15  {  {
16   int fd = xopen(file, O_WRONLY);   int fd = xopen(file, O_WRONLY);
17     xwrite_str(fd, str);
  xwrite(fd, str, strlen(str));  
18   close(fd);   close(fd);
19  }  }

Legend:
Removed from v.983  
changed lines
  Added in v.984