Skip to content
Snippets Groups Projects
Commit 29d38a96 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

missing fputs

parent 0dd1be68
Branches
Tags
No related merge requests found
...@@ -27,6 +27,11 @@ FILE *fopen$UNIX2003(const char * filename, const char *mode) ...@@ -27,6 +27,11 @@ FILE *fopen$UNIX2003(const char * filename, const char *mode)
return fopen(filename, mode); return fopen(filename, mode);
} }
int fputs$UNIX2003(const char * filename, FILE *file)
{
return fputs(filename, file);
}
int stat$INODE64(const char * filename, struct stat *buff) int stat$INODE64(const char * filename, struct stat *buff)
{ {
return stat(filename,buff); return stat(filename,buff);
...@@ -128,4 +133,4 @@ int fstat$INODE64(int fildes, struct stat *buf) ...@@ -128,4 +133,4 @@ int fstat$INODE64(int fildes, struct stat *buf)
ssize_t send$UNIX2003(int socket, const void *buffer, size_t length, int flags) ssize_t send$UNIX2003(int socket, const void *buffer, size_t length, int flags)
{ {
return send(socket, buffer, length, flags); return send(socket, buffer, length, flags);
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment