Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fopen64.c « stdio « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1dca885b8582b7f5d7e67a39d925d062b18eace (plain)
1
2
3
4
5
6
7
#include <stdio.h>

FILE* __cdecl
fopen64 (const char* filename, const char* mode)
{
  return fopen (filename, mode);
}