aboutsummaryrefslogtreecommitdiff
path: root/gdb/test2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/test2.c')
-rw-r--r--gdb/test2.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gdb/test2.c b/gdb/test2.c
deleted file mode 100644
index e6964f0..0000000
--- a/gdb/test2.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <sys/param.h>
-#include <sys/dir.h>
-#include <sys/user.h>
-#include <stdio.h>
-
-main ()
-{
- struct user u;
- printf ("&u.u_ar0 - &u = %d, 0%o\n", (int) &u.u_ar0 - (int) &u,
- (int) &u.u_ar0 - (int) &u);
- printf ("sizeof (struct pcb) = %d, 0%o\n",
- sizeof (struct pcb), sizeof (struct pcb));
-}