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

unistd.h « include « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2f562a3a749bdf8e5343a2a7fa4ef4c26c7f7f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* libc/sys/linux/include/unistd.h - Various standard functions */

/* Written 2000 by Werner Almesberger */


#ifndef _NEWLIB_UNISTD_H
#define _NEWLIB_UNISTD_H

#include <sys/types.h>
#include <sys/unistd.h>

/* Declare some missing goodies */

extern char *optarg;
extern int optind, opterr, optopt;


int readlink(const char *path, char *buf, size_t bufsiz);

#endif