From c9250e0c0cdb56ffb8efea105b1871f17074bd28 Mon Sep 17 00:00:00 2001 From: Chris Apers Date: Wed, 6 Oct 2004 09:44:09 +0000 Subject: Use system path svn-id: r15430 --- backends/PalmOS/Src/missing/_stdio.cpp | 2 +- backends/PalmOS/Src/missing/_stdlib.cpp | 2 +- backends/PalmOS/Src/missing/_string.cpp | 2 +- backends/PalmOS/Src/missing/_time.cpp | 4 ++-- backends/PalmOS/Src/missing/_unistd.cpp | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) (limited to 'backends/PalmOS/Src/missing') 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 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 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 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 // 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 const Char *gUnistdCWD = NULL; @@ -36,4 +36,4 @@ Char *getcwd(Char *buf, UInt32 size) { } return copy; -} \ No newline at end of file +} -- cgit v1.2.3