2023-11-16 23:19:36 -05:00

14 lines
237 B
C

/*
* fread2.c
*
* The actual fread() function as a non-inline
*/
#define __NO_FREAD_FWRITE_INLINES
#include <stdio.h>
size_t fread(void *ptr, size_t size, size_t nmemb, FILE * f)
{
return _fread(ptr, size * nmemb, f) / size;
}