- don't free user-supplied string (via -e)
[oweals/busybox.git] / libbb / write.c
index b628b49bb9635221d60281c4fe3b9a2c3b73c796..e8a9eff866451dd04739d485b4604bb693981226 100644 (file)
@@ -11,7 +11,7 @@
 
 /* Open file and write string str to it, close file.
  * Die on any open or write-error.  */
-void xopen_xwrite_close(const char* file, const char* str)
+void FAST_FUNC xopen_xwrite_close(const char* file, const char* str)
 {
        int fd = xopen(file, O_WRONLY);