diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-08 02:38:21 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-08 02:38:21 +0100 |
commit | 736e8525259e0f562dc5dda3f7756ea738667b74 (patch) | |
tree | e3465c379fd8192672d8346063810c6d1d4311fc /LibC/stdio.cpp | |
parent | 5158bee08cab9b6484ed5d455f1b6b7023e65ecd (diff) | |
download | serenity-736e8525259e0f562dc5dda3f7756ea738667b74.zip |
LibC: Implement enough missing stuff to get bash-5.0 running. :^)
Diffstat (limited to 'LibC/stdio.cpp')
-rw-r--r-- | LibC/stdio.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/LibC/stdio.cpp b/LibC/stdio.cpp index ca9cd549b3..d3d4f6df52 100644 --- a/LibC/stdio.cpp +++ b/LibC/stdio.cpp @@ -365,5 +365,11 @@ int fclose(FILE* stream) return rc; } +int rename(const char* oldpath, const char* newpath) +{ + dbgprintf("FIXME(LibC): rename(%s, %s)\n", oldpath, newpath); + ASSERT_NOT_REACHED(); +} + } |