aboutsummaryrefslogtreecommitdiff
path: root/backends/PalmOS/Src/missing
diff options
context:
space:
mode:
Diffstat (limited to 'backends/PalmOS/Src/missing')
-rw-r--r--backends/PalmOS/Src/missing/_stdio.cpp2
-rw-r--r--backends/PalmOS/Src/missing/_stdlib.cpp2
-rw-r--r--backends/PalmOS/Src/missing/_string.cpp2
-rw-r--r--backends/PalmOS/Src/missing/_time.cpp4
-rw-r--r--backends/PalmOS/Src/missing/_unistd.cpp4
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
+}