File diff r14271:86e78183a586 → r14272:36cdf415cd1e
src/fileio.cpp
Show inline comments
 
@@ -10,24 +10,27 @@
 
/** @file fileio.cpp Standard In/Out file operations */
 

	
 
#include "stdafx.h"
 
#include "fileio_func.h"
 
#include "variables.h"
 
#include "debug.h"
 
#include "fios.h"
 
#include "string_func.h"
 
#include "tar_type.h"
 
#ifdef WIN32
 
#include <windows.h>
 
#else
 
#ifdef OPENBSD
 
#include <unistd.h>
 
#endif
 
#include <pwd.h>
 
#endif
 
#include <sys/stat.h>
 
#include <algorithm>
 

	
 
/*************************************************/
 
/* FILE IO ROUTINES ******************************/
 
/*************************************************/
 

	
 
#define FIO_BUFFER_SIZE 512
 

	
 
struct Fio {