File: stdio_wrap.c

package info (click to toggle)
libquota-perl 1.8.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 384 kB
  • sloc: perl: 1,038; ansic: 1,021; makefile: 10
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);
}