aboutsummaryrefslogtreecommitdiff
path: root/libbb/write.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/write.c')
-rw-r--r--libbb/write.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/write.c b/libbb/write.c
index b628b49bb..e8a9eff86 100644
--- a/libbb/write.c
+++ b/libbb/write.c
@@ -11,7 +11,7 @@
11 11
12/* Open file and write string str to it, close file. 12/* Open file and write string str to it, close file.
13 * Die on any open or write-error. */ 13 * Die on any open or write-error. */
14void xopen_xwrite_close(const char* file, const char* str) 14void FAST_FUNC xopen_xwrite_close(const char* file, const char* str)
15{ 15{
16 int fd = xopen(file, O_WRONLY); 16 int fd = xopen(file, O_WRONLY);
17 17