diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-31 22:43:49 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-31 22:43:49 +0100 |
commit | d980ddc74581a6894bf71b9eeb00461e9807e43f (patch) | |
tree | 285409528e0263517cde86847e734409393bf0cc /Kernel/StdLib.h | |
parent | a8f36f72a89a451e3939c3aebe5fcedbd5540f11 (diff) | |
download | serenity-d980ddc74581a6894bf71b9eeb00461e9807e43f.zip |
Fix busted display of tty names in /proc/summary.
Diffstat (limited to 'Kernel/StdLib.h')
-rw-r--r-- | Kernel/StdLib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/StdLib.h b/Kernel/StdLib.h index ee7cd18c33..112aa8dad6 100644 --- a/Kernel/StdLib.h +++ b/Kernel/StdLib.h @@ -19,3 +19,4 @@ DWORD strlen(const char*); void *memset(void*, BYTE, DWORD); char *strdup(const char*); int memcmp(const void*, const void*, size_t); +char* strrchr(const char* str, int ch); |