diff options
author | Pixel <Pixel> | 2002-08-26 15:02:15 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-08-26 15:02:15 +0000 |
commit | 6adca8421211f68f3838966cf70945d538476857 (patch) | |
tree | c8036a448e157453624bba37ece6c5ebe58737d8 /includes/fileutils.h | |
parent | 68c31dd0f98784d6b755d9f89e5b2a51d85eeddf (diff) |
Fixing some #ifdef
Diffstat (limited to 'includes/fileutils.h')
-rw-r--r-- | includes/fileutils.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/includes/fileutils.h b/includes/fileutils.h deleted file mode 100644 index a552477..0000000 --- a/includes/fileutils.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * PSX-Tools Bundle Pack - * Copyright (C) 2002 Nicolas "Pixel" Noble - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#ifndef __FILEUTILS_H__ -#define __FILEUTILS_H__ - -#include <stdio.h> -#include <sys/stat.h> -#include <sys/types.h> -#include <fcntl.h> - -unsigned long filesize(int f_iso); -void copy(int s, int d, long size = -1); - -unsigned long filesize(FILE * f_iso); -void copy(FILE * s, FILE * d, long size = -1); - -#if defined __linux__ || defined __CYGWIN32__ -#define MKDIR(name) mkdir(name, 0777) -#elif defined __MINGW32_VERSION -#define MKDIR mkdir -#else -#error Unknow compiler/platform -#endif - -#endif |