summaryrefslogtreecommitdiff
path: root/Kernel/StdLib.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-31 22:43:49 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-10-31 22:43:49 +0100
commitd980ddc74581a6894bf71b9eeb00461e9807e43f (patch)
tree285409528e0263517cde86847e734409393bf0cc /Kernel/StdLib.h
parenta8f36f72a89a451e3939c3aebe5fcedbd5540f11 (diff)
downloadserenity-d980ddc74581a6894bf71b9eeb00461e9807e43f.zip
Fix busted display of tty names in /proc/summary.
Diffstat (limited to 'Kernel/StdLib.h')
-rw-r--r--Kernel/StdLib.h1
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);