Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/modules/klibc/fread2.c

Source at commit 1308 created 12 years 8 months ago.
By meklort, Add a few placeholders for file io
1/*
2 * fread2.c
3 *
4 * The actual fread() function as a non-inline
5 */
6
7#define __NO_FREAD_FWRITE_INLINES
8#include <stdio.h>
9extern size_t _fread(void *buf, size_t count, FILE *f);
10size_t fread(void *ptr, size_t size, size_t nmemb, FILE * f)
11{
12return _fread(ptr, size * nmemb, f) / size;
13}
14

Archive Download this file

Revision: 1308