summaryrefslogtreecommitdiff
path: root/LibC/unistd.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-05-15 21:40:41 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-15 21:40:41 +0200
commit3cba2a8a7872794516488ac5dfe240e946b1288d (patch)
treeabf359c90dbee15228f34669c7d5613d111e77f0 /LibC/unistd.h
parentdcf490ecab4fea2eb2cb80508ae68d77c328739d (diff)
downloadserenity-3cba2a8a7872794516488ac5dfe240e946b1288d.zip
Kernel: Add a beep() syscall that beeps the PC speaker.
Hook this up in Terminal so that the '\a' character generates a beep. Finally emit an '\a' character in the shell line editing code when backspacing at the start of the line.
Diffstat (limited to 'LibC/unistd.h')
-rw-r--r--LibC/unistd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/LibC/unistd.h b/LibC/unistd.h
index 172cbcd8a1..b184a5a435 100644
--- a/LibC/unistd.h
+++ b/LibC/unistd.h
@@ -14,6 +14,7 @@ __BEGIN_DECLS
extern char** environ;
+void beep();
int systrace(pid_t);
int gettid();
int donate(int tid);