File: stdio_wrap.c

package info (click to toggle)
libquota-perl 1.7.1%2Bdfsg-1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 372 kB
  • ctags: 460
  • sloc: ansic: 975; perl: 793; sh: 51; makefile: 9
file content (17 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 *  Access to the std I/O routines for people using sfio
 *  stdio FILE operators are needed by getmntent(3)
 */

#include <stdio.h>

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

int std_fclose(FILE *fd)
{
  return fclose(fd);
}