standalone : Modified the lseek function signature.
This patch modifies the function signature of lseek to compile on ICC ARM compiler. Signed-off-by: Venkata Naga Sai Krishna Kolapalli <venkatan@xilinx.com>
This commit is contained in:
parent
c53c215cc5
commit
cf44439081
1 changed files with 2 additions and 2 deletions
|
@ -52,9 +52,9 @@
|
|||
#include <stdio.h>
|
||||
#include <yfuns.h>
|
||||
#include "xil_types.h"
|
||||
sint32 __lseek(sint32 handle, sint32 offset, sint32 whence);
|
||||
LONG __lseek(sint32 handle, LONG offset, sint32 whence);
|
||||
|
||||
sint32 __lseek(sint32 handle, sint32 offset, sint32 whence)
|
||||
LONG __lseek(sint32 handle, LONG offset, sint32 whence)
|
||||
{
|
||||
return (-1);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue