| version 1.42, 2011/08/29 14:51:17 |
version 1.43, 2012/01/22 18:36:14 |
|
|
| extern char **environ; |
extern char **environ; |
| |
|
| static int readf(void *, char *, int); |
static int readf(void *, char *, int); |
| static fpos_t seekf(void *, fpos_t, int); |
static off_t seekf(void *, off_t, int); |
| static int writef(void *, const char *, int); |
static int writef(void *, const char *, int); |
| static int closef(void *); |
static int closef(void *); |
| static int srccat(Char *, Char *); |
static int srccat(Char *, Char *); |
| Line 1245 writef(void *oreo, const char *buf, int |
|
| Line 1245 writef(void *oreo, const char *buf, int |
|
| return write(DESC(oreo), buf, siz); |
return write(DESC(oreo), buf, siz); |
| } |
} |
| |
|
| static fpos_t |
static off_t |
| seekf(void *oreo, fpos_t off, int whence) |
seekf(void *oreo, off_t off, int whence) |
| { |
{ |
| return lseek(DESC(oreo), off, whence); |
return lseek(DESC(oreo), off, whence); |
| } |
} |