~vcs-imports/xbmc/upstream

« back to all changes in this revision

Viewing changes to xbmc/cores/DllLoader/exports/wrapper.c

  • Committer: malloc64
  • Date: 2008-06-07 17:16:02 UTC
  • Revision ID: vcs-imports@canonical.com-20080607171602-3csu5gsl4lkhomb9
Undo changes that made everything go to hell since this is taking longer than anticipated

Show diffs side-by-side

added added

removed removed

Lines of Context:
162
162
  return dll_fopen(path, mode);
163
163
}
164
164
 
165
 
FILE *__wrap_fopen64(const char *path, const char *mode)
166
 
{
167
 
  return dll_fopen(path, mode);
168
 
}
169
 
 
170
165
FILE *__wrap_fdopen(int fildes, const char *mode)
171
166
{
172
167
  return dll_fdopen(fildes, mode);