blob: cebc017c68b6628082a6cc59105f140d5f477390 [file] [log] [blame]
/*
* fwrite2.c
*
* The actual fwrite() function as a non-inline
*/
#define __NO_STDIO_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;
}