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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment