File: fdopen.c

package info (click to toggle)
dietlibc 0.34~cvs20160606-18
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 11,768 kB
  • sloc: ansic: 71,692; asm: 13,009; cpp: 1,860; makefile: 816; sh: 300; perl: 62
file content (15 lines) | stat: -rw-r--r-- 424 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <errno.h>
#include "dietfeatures.h"
#include <sys/types.h>
#include <dietstdio.h>
#include <unistd.h>

FILE *fdopen_unlocked(int filedes, const char *mode) {
  int f=0;	/* O_RDONLY, O_WRONLY or O_RDWR */

  f=__stdio_parse_mode(mode);
  if (filedes<0) { errno=EBADF; return 0; }
  return __stdio_init_file(filedes,0,f);
}

FILE *fdopen(int filedes, const char *mode) __attribute__((weak,alias("fdopen_unlocked")));