Paul Cercueil / libxml2

Dependents:   libiio

dummy.c

Committer:
pcercuei
Date:
2016-08-25
Revision:
1:26f20484cbdc

File content as of revision 1:26f20484cbdc:

#include <stddef.h>

typedef int ssize_t;

void close(int fd)
{
}

ssize_t read(int fd, void *buf, size_t count)
{
    return -9; /* EBADF */
}

char *getcwd(char *buf)
{
    return NULL;
}