This is Unofficial EPICS BASE Doxygen Site
osiUnistd.h
Go to the documentation of this file.
1 /*************************************************************************\
2 * Copyright (c) 2002 The University of Chicago, as Operator of Argonne
3 * National Laboratory.
4 * Copyright (c) 2002 The Regents of the University of California, as
5 * Operator of Los Alamos National Laboratory.
6 * EPICS BASE Versions 3.13.7
7 * and higher are distributed subject to a Software License Agreement found
8 * in file LICENSE that is included with this distribution.
9 \*************************************************************************/
10 /*
11  * Author Jeffrey O. Hill
12  * johill@lanl.gov
13  * 505 665 1831
14  */
15 
16 #include <unistd.h>
17 #include <ieeefp.h>
18 
19 /*
20  * Some systems fail to provide prototypes of these functions.
21  * Others provide different prototypes.
22  * There seems to be no way to handle this automatically, so
23  * if you get compile errors, just make the appropriate changes here.
24  */
25 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 
30 int putenv (char *);
31 char *strdup (const char *);
32 char *strtok_r(char*, const char*, char**);
33 
34 int snprintf(char *str, size_t size, const char *format, ...);
35 #include <stdarg.h>
36 int vsnprintf(char *str, size_t size, const char *format, va_list ap);
37 
38 
39 #ifdef __cplusplus
40 }
41 #endif
char * strtok_r(char *, const char *, char **)
char * strdup(const char *)
#define str(v)
int putenv(char *)
int snprintf(char *str, size_t size, const char *format,...)
int vsnprintf(char *str, size_t size, const char *format, va_list ap)