projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6cf8bfd
)
add acct syscall source file, omitted in last syscalls commit
author
Rich Felker
<dalias@aerifal.cx>
Sun, 9 Sep 2012 02:23:03 +0000
(22:23 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Sun, 9 Sep 2012 02:23:03 +0000
(22:23 -0400)
src/unistd/acct.c
[new file with mode: 0644]
patch
|
blob
diff --git a/src/unistd/acct.c
b/src/unistd/acct.c
new file mode 100644
(file)
index 0000000..
9384712
--- /dev/null
+++ b/
src/unistd/acct.c
@@ -0,0
+1,9
@@
+#define _GNU_SOURCE
+#include <unistd.h>
+#include "syscall.h"
+#include "libc.h"
+
+int acct(const char *filename)
+{
+ return syscall(SYS_acct, filename);
+}