diff options
author | Chris Apers | 2004-10-06 09:44:09 +0000 |
---|---|---|
committer | Chris Apers | 2004-10-06 09:44:09 +0000 |
commit | c9250e0c0cdb56ffb8efea105b1871f17074bd28 (patch) | |
tree | d20de7be455cf00f254fa23fc276cad664082f2a /backends/PalmOS/Src/missing | |
parent | d31cd1dd73aaf55fb0fa85b4da72267bbbf2d7a8 (diff) | |
download | scummvm-rg350-c9250e0c0cdb56ffb8efea105b1871f17074bd28.tar.gz scummvm-rg350-c9250e0c0cdb56ffb8efea105b1871f17074bd28.tar.bz2 scummvm-rg350-c9250e0c0cdb56ffb8efea105b1871f17074bd28.zip |
Use system path
svn-id: r15430
Diffstat (limited to 'backends/PalmOS/Src/missing')
-rw-r--r-- | backends/PalmOS/Src/missing/_stdio.cpp | 2 | ||||
-rw-r--r-- | backends/PalmOS/Src/missing/_stdlib.cpp | 2 | ||||
-rw-r--r-- | backends/PalmOS/Src/missing/_string.cpp | 2 | ||||
-rw-r--r-- | backends/PalmOS/Src/missing/_time.cpp | 4 | ||||
-rw-r--r-- | backends/PalmOS/Src/missing/_unistd.cpp | 4 |
5 files changed, 7 insertions, 7 deletions
diff --git a/backends/PalmOS/Src/missing/_stdio.cpp b/backends/PalmOS/Src/missing/_stdio.cpp index 6939448c78..9987084fd7 100644 --- a/backends/PalmOS/Src/missing/_stdio.cpp +++ b/backends/PalmOS/Src/missing/_stdio.cpp @@ -20,7 +20,7 @@ * */ -#include "stdio.h" +#include <stdio.h> FileRef gStdioOutput = 0; diff --git a/backends/PalmOS/Src/missing/_stdlib.cpp b/backends/PalmOS/Src/missing/_stdlib.cpp index 3b8bdb4b62..968435938c 100644 --- a/backends/PalmOS/Src/missing/_stdlib.cpp +++ b/backends/PalmOS/Src/missing/_stdlib.cpp @@ -20,7 +20,7 @@ * */ -#include "stdlib.h" +#include <stdlib.h> void *bsearch(const void *key, const void *base, UInt32 nmemb, UInt32 size, int (*compar)(const void *, const void *)) { Int32 position; diff --git a/backends/PalmOS/Src/missing/_string.cpp b/backends/PalmOS/Src/missing/_string.cpp index 191185dddf..03a9aa2f90 100644 --- a/backends/PalmOS/Src/missing/_string.cpp +++ b/backends/PalmOS/Src/missing/_string.cpp @@ -20,7 +20,7 @@ * */ -#include "string.h" +#include <string.h> void *memchr(const void *s, int c, UInt32 n) { UInt32 chr; diff --git a/backends/PalmOS/Src/missing/_time.cpp b/backends/PalmOS/Src/missing/_time.cpp index 71c348c1a7..122ff7ccf5 100644 --- a/backends/PalmOS/Src/missing/_time.cpp +++ b/backends/PalmOS/Src/missing/_time.cpp @@ -20,7 +20,7 @@ * */ -#include "time.h" +#include <time.h> // ignore GMT, only device time @@ -57,4 +57,4 @@ struct tm *localtime(const time_t *timer) { tmDate.tm_wday = dt.weekDay; return &tmDate; -}
\ No newline at end of file +} diff --git a/backends/PalmOS/Src/missing/_unistd.cpp b/backends/PalmOS/Src/missing/_unistd.cpp index ea83e1bb73..9e54c1f42e 100644 --- a/backends/PalmOS/Src/missing/_unistd.cpp +++ b/backends/PalmOS/Src/missing/_unistd.cpp @@ -20,7 +20,7 @@ * */ -#include "unistd.h" +#include <unistd.h> const Char *gUnistdCWD = NULL; @@ -36,4 +36,4 @@ Char *getcwd(Char *buf, UInt32 size) { } return copy; -}
\ No newline at end of file +} |