Removed a "#pragma once", made Makefile.dep be the same on all platforms.

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@162 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Yves Rizoud
2008-09-25 13:51:50 +00:00
parent f26c8fe9f1
commit 2a66650568
9 changed files with 33 additions and 35 deletions

View File

@@ -1,3 +1,6 @@
// Diverses fonctions qui existaient sous dos mais pas sous linux...
#ifdef __linux__
#include <string.h>
#include <stdio.h>
#include <sys/stat.h>
@@ -29,3 +32,5 @@ void itoa(int source,char* dest, int longueur)
{
snprintf(dest,longueur,"%d",source);
}
#endif