diff options
Diffstat (limited to 'LibC/time.cpp')
-rw-r--r-- | LibC/time.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/LibC/time.cpp b/LibC/time.cpp index eedac5422c..11adff637d 100644 --- a/LibC/time.cpp +++ b/LibC/time.cpp @@ -21,4 +21,9 @@ int gettimeofday(struct timeval* tv, struct timezone*) __RETURN_WITH_ERRNO(rc, rc, -1); } +char* ctime(const time_t*) +{ + return const_cast<char*>("ctime() not implemented"); +} + } |