summaryrefslogblamecommitdiffstats
path: root/include/fileutils.h
blob: 691429ba09b2c45353b6527bc3f7ff974ef2b641 (plain) (tree)
1
2
3
4
5


                            
                                    
 













                                             
      
#ifndef UTIL_LINUX_FILEUTILS
#define UTIL_LINUX_FILEUTILS

extern int xmkstemp(char **tmpname);

static inline FILE *xfmkstemp(char **tmpname)
{
	int fd;
	FILE *ret;
	fd = xmkstemp(tmpname);
	if (fd == -1) {
		return NULL;
	}
	if (!(ret = fdopen(fd, "w+"))) {
		close(fd);
		return NULL;
	}
	return ret;
}
#endif