summaryrefslogtreecommitdiff
path: root/mit-pthreads/tests/test_cwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'mit-pthreads/tests/test_cwd.c')
-rw-r--r--mit-pthreads/tests/test_cwd.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/mit-pthreads/tests/test_cwd.c b/mit-pthreads/tests/test_cwd.c
deleted file mode 100644
index 979c173d5fc..00000000000
--- a/mit-pthreads/tests/test_cwd.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <stdio.h>
-
-main(int argc, char **argv)
-{
- char wd[1024], *getcwd(), *getwd();
-
- pthread_init();
- printf("getcwd => %s\n", getcwd(wd, 1024));
- printf("getwd => %s\n", getwd(wd));
- exit(0);
-}