2008-05-05 Ken Werner <ken.werner@de.ibm.com>

* spu/readlink.c: Align readlink implementation to POSIX.
This commit is contained in:
Jeff Johnston 2008-05-05 22:43:47 +00:00
parent 1e6db69571
commit 6c31adf67e
2 changed files with 6 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2008-05-05 Ken Werner <ken.werner@de.ibm.com>
* spu/readlink.c: Align readlink implementation to POSIX.
2008-04-25 Nick Clifton <nickc@redhat.com>
* arm/crt0.S: Allow assembly under ARMv7 ISA. Support for

View File

@ -44,14 +44,8 @@ typedef struct
unsigned int pad2[3];
} syscall_readlink_t;
/*
* POSIX says readlink returns ssize_t, and has an size_t bufsiz, but
* newlib has it prototyped as returning int, and int bufsiz. ssize_t,
* size_t and int are ally currently 4 bytes for SPU, so just leave them
* as ints for now.
*/
int
readlink (const char *path, char *buf, int bufsiz)
ssize_t
readlink (const char *path, char *buf, size_t bufsiz)
{
syscall_readlink_t sys;