Changeset e22d644 in rtems
- Timestamp:
- 12/14/98 23:01:43 (25 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 1d9f198a
- Parents:
- b2e180b7
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libcsupport/src/read.c
rb2e180b7 re22d644 15 15 #include "libio_.h" 16 16 17 /* XXX newlib has the prototype for this wrong. It will be a bit painful */ 18 /* XXX to fix so we are choosing to delay fixing this. */ 19 20 int read( 17 ssize_t read( 21 18 int fd, 22 19 void *buffer, 23 unsigned32count20 size_t count 24 21 ) 25 22 { -
c/src/exec/libcsupport/src/write.c
rb2e180b7 re22d644 23 23 */ 24 24 25 /* XXX newlib has the prototype for this wrong. It will be a bit painful */ 26 /* XXX to fix so we are choosing to delay fixing this. */ 27 28 int write( /* XXX this should return a ssize_t */ 25 ssize_t write( 29 26 int fd, 30 27 const void *buffer, 31 unsigned32 count /* XXX this should be a size_t */28 size_t count 32 29 ) 33 30 { -
c/src/lib/libc/read.c
rb2e180b7 re22d644 15 15 #include "libio_.h" 16 16 17 /* XXX newlib has the prototype for this wrong. It will be a bit painful */ 18 /* XXX to fix so we are choosing to delay fixing this. */ 19 20 int read( 17 ssize_t read( 21 18 int fd, 22 19 void *buffer, 23 unsigned32count20 size_t count 24 21 ) 25 22 { -
c/src/lib/libc/write.c
rb2e180b7 re22d644 23 23 */ 24 24 25 /* XXX newlib has the prototype for this wrong. It will be a bit painful */ 26 /* XXX to fix so we are choosing to delay fixing this. */ 27 28 int write( /* XXX this should return a ssize_t */ 25 ssize_t write( 29 26 int fd, 30 27 const void *buffer, 31 unsigned32 count /* XXX this should be a size_t */28 size_t count 32 29 ) 33 30 { -
cpukit/libcsupport/src/read.c
rb2e180b7 re22d644 15 15 #include "libio_.h" 16 16 17 /* XXX newlib has the prototype for this wrong. It will be a bit painful */ 18 /* XXX to fix so we are choosing to delay fixing this. */ 19 20 int read( 17 ssize_t read( 21 18 int fd, 22 19 void *buffer, 23 unsigned32count20 size_t count 24 21 ) 25 22 { -
cpukit/libcsupport/src/write.c
rb2e180b7 re22d644 23 23 */ 24 24 25 /* XXX newlib has the prototype for this wrong. It will be a bit painful */ 26 /* XXX to fix so we are choosing to delay fixing this. */ 27 28 int write( /* XXX this should return a ssize_t */ 25 ssize_t write( 29 26 int fd, 30 27 const void *buffer, 31 unsigned32 count /* XXX this should be a size_t */28 size_t count 32 29 ) 33 30 {
Note: See TracChangeset
for help on using the changeset viewer.