blob: a869c4fc6ded5fd5f87da8640d433010840617a9 [file] [log] [blame]
/*
* fwrite2.c
*
* The actual fwrite() function as a non-inline
*/
#define __NO_FREAD_FWRITE_INLINES
#include <stdio.h>
size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *f)
{
return __fwrite(ptr, size*nmemb, f)/size;
}