Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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;
}