Commit a87987c6 authored by Alessandro Rubini's avatar Alessandro Rubini

trivial: remove unused code in posix-io

Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent 7d2d9d92
......@@ -25,16 +25,6 @@ void posix_puts(const char *s)
fputs(s, stdout);
}
void *posix_memcpy(void *d, const void *s, int count)
{
return memcpy(d, s, count);
}
void *posix_memset(void *s, int c, int count)
{
return memset(s, c, count);
}
void posix_get_tstamp(TimeInternal *t)
{
struct timespec tp;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment