Changeset 421dfef6 in rtems
- Timestamp:
- 01/30/98 20:59:22 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 5c3511e
- Parents:
- 243ce5d
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libcsupport/src/__times.c
r243ce5d r421dfef6 64 64 } 65 65 66 #if defined(RTEMS_NEWLIB) 66 67 clock_t _times_r( 67 68 struct _reent *ptr, … … 71 72 return _times(ptms); 72 73 } 74 #endif -
c/src/exec/libcsupport/src/malloc.c
r243ce5d r421dfef6 29 29 30 30 /* for sbrk prototype in linux */ 31 #if defined( linux)31 #if defined(__linux__) 32 32 #define __USE_MISC 33 33 #endif -
c/src/lib/libbsp/unix/posix/startup/bspstart.c
r243ce5d r421dfef6 28 28 29 29 /* for sbrk prototype in linux */ 30 #if defined( linux)30 #if defined(__linux__) 31 31 #define __USE_MISC 32 32 #endif -
c/src/lib/libc/__times.c
r243ce5d r421dfef6 64 64 } 65 65 66 #if defined(RTEMS_NEWLIB) 66 67 clock_t _times_r( 67 68 struct _reent *ptr, … … 71 72 return _times(ptms); 72 73 } 74 #endif -
c/src/lib/libc/malloc.c
r243ce5d r421dfef6 29 29 30 30 /* for sbrk prototype in linux */ 31 #if defined( linux)31 #if defined(__linux__) 32 32 #define __USE_MISC 33 33 #endif -
c/src/lib/libmisc/monitor/mon-symbols.c
r243ce5d r421dfef6 13 13 14 14 /* for strcasecmp in linux and solaris */ 15 #if defined(linux) 15 #if defined(__linux__) 16 #include <features.h> 16 17 #define __USE_BSD 17 18 #endif -
c/src/libmisc/monitor/mon-symbols.c
r243ce5d r421dfef6 13 13 14 14 /* for strcasecmp in linux and solaris */ 15 #if defined(linux) 15 #if defined(__linux__) 16 #include <features.h> 16 17 #define __USE_BSD 17 18 #endif -
cpukit/libcsupport/src/__times.c
r243ce5d r421dfef6 64 64 } 65 65 66 #if defined(RTEMS_NEWLIB) 66 67 clock_t _times_r( 67 68 struct _reent *ptr, … … 71 72 return _times(ptms); 72 73 } 74 #endif -
cpukit/libcsupport/src/malloc.c
r243ce5d r421dfef6 29 29 30 30 /* for sbrk prototype in linux */ 31 #if defined( linux)31 #if defined(__linux__) 32 32 #define __USE_MISC 33 33 #endif -
cpukit/libmisc/monitor/mon-symbols.c
r243ce5d r421dfef6 13 13 14 14 /* for strcasecmp in linux and solaris */ 15 #if defined(linux) 15 #if defined(__linux__) 16 #include <features.h> 16 17 #define __USE_BSD 17 18 #endif
Note: See TracChangeset
for help on using the changeset viewer.