1 /* vi: set sw=4 ts=4: */
2 /*
3  * Utility routines.
4  *
5  * Copyright (C) 2008 Bernhard Reutner-Fischer
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8  */
9 #include "libbb.h"
10 
11 /* Open file and write string str to it, close file.
12  * Die on any open or write error.  */
xopen_xwrite_close(const char * file,const char * str)13 void FAST_FUNC xopen_xwrite_close(const char* file, const char* str)
14 {
15 	int fd = xopen(file, O_WRONLY);
16 	xwrite_str(fd, str);
17 	close(fd);
18 }
19