diff options
Diffstat (limited to 'libbb/write.c')
-rw-r--r-- | libbb/write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/write.c b/libbb/write.c index b628b49..e8a9eff 100644 --- a/libbb/write.c +++ b/libbb/write.c @@ -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); |