Paul Cercueil / libxml2

Dependents:   libiio

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers dummy.c Source File

dummy.c

00001 #include <stddef.h>
00002 
00003 typedef int ssize_t;
00004 
00005 void close(int fd)
00006 {
00007 }
00008 
00009 ssize_t read(int fd, void *buf, size_t count)
00010 {
00011     return -9; /* EBADF */
00012 }
00013 
00014 char *getcwd(char *buf)
00015 {
00016     return NULL;
00017 }