aboutsummaryrefslogtreecommitdiff
path: root/syscalls.c
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2018-04-06 16:14:43 -0400
committerPaul Selkirk <paul@psgd.org>2018-04-06 22:34:05 -0400
commit6c7bd80b4e7bc5af1659b14b7fb0038f3dc53989 (patch)
treea10451c611dcf9f7d31a019c6bbc2e81fc8cd9ac /syscalls.c
parentb35b87ea14016760786319a23b87792f1e1041de (diff)
parentf508e24f5b872a8f7d642eb4fb2217dd1497de96 (diff)
Merge branch 'profiling'
Diffstat (limited to 'syscalls.c')
-rw-r--r--syscalls.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/syscalls.c b/syscalls.c
index 2243d0b..fc842c0 100644
--- a/syscalls.c
+++ b/syscalls.c
@@ -48,6 +48,7 @@
/***************************************************************************/
+#ifndef DO_PROFILING
int _read_r (struct _reent *r, int file, char * ptr, int len)
{
r = r;
@@ -106,6 +107,7 @@ int _close_r (struct _reent *r, int file)
return 0;
}
+#endif
/***************************************************************************/
@@ -148,6 +150,7 @@ caddr_t _sbrk_r (struct _reent *r, int incr)
/***************************************************************************/
+#ifndef DO_PROFILING
int _fstat_r (struct _reent *r, int file, struct stat * st)
{
r = r;
@@ -186,6 +189,7 @@ int _kill (int a, int b)
return 0;
}
+#endif
/***************************************************************************/
@@ -198,6 +202,7 @@ int _getpid(int a)
/***************************************************************************/
+#ifndef DO_PROFILING
int _open(int a, int b)
{
a = a;
@@ -205,5 +210,6 @@ int _open(int a, int b)
return 0;
}
+#endif
/*** EOF ***/