summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-08-06 17:45:12 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-08-06 17:45:12 +0000
commit4bab8e2d350eb91bc69e3506952870325f2e83cd (patch)
treec2367aead327d409f7a5141ab479ef4383656696 /cpukit
parent_CORE_mutex_Seize: added change priority case if the mutex was obtained. (diff)
downloadrtems-4bab8e2d350eb91bc69e3506952870325f2e83cd.tar.bz2
get_errno: no longer needed by gnat runtime
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/libcsupport/src/newlibc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpukit/libcsupport/src/newlibc.c b/cpukit/libcsupport/src/newlibc.c
index ec76f9c4d3..c4903b343f 100644
--- a/cpukit/libcsupport/src/newlibc.c
+++ b/cpukit/libcsupport/src/newlibc.c
@@ -290,6 +290,7 @@ libc_init(int reentrant)
}
}
+#if 0
/*
* Routines required by the gnat runtime.
*/
@@ -298,6 +299,7 @@ int get_errno()
{
return errno;
}
+#endif
/*
* Function: _exit
@@ -373,6 +375,7 @@ int __kill( pid_t pid, int sig )
return 0;
}
+#if !defined(RTEMS_POSIX_API)
unsigned int sleep(
unsigned int seconds
)
@@ -397,6 +400,7 @@ unsigned int sleep(
return 0;
}
+#endif
#endif