BSD 4_1c_2 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Wed, 9 Mar 1983 06:49:11 +0000 (22:49 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Wed, 9 Mar 1983 06:49:11 +0000 (22:49 -0800)
Work on file usr/src/ucb/dbx/test/forward.c

Synthesized-from: CSRG/cd1/4.1c.2

usr/src/ucb/dbx/test/forward.c [new file with mode: 0644]

diff --git a/usr/src/ucb/dbx/test/forward.c b/usr/src/ucb/dbx/test/forward.c
new file mode 100644 (file)
index 0000000..5acc81f
--- /dev/null
@@ -0,0 +1,12 @@
+typedef struct blah BLAH;
+
+struct blah {
+    int x;
+    int y;
+};
+
+struct blah b;
+
+main()
+{
+}