BSD 4_3_Tahoe development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Mon, 12 May 1986 02:23:39 +0000 (18:23 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Mon, 12 May 1986 02:23:39 +0000 (18:23 -0800)
Work on file usr/src/new/xns/examples/filing/debug.c

Synthesized-from: CSRG/cd2/4.3tahoe

usr/src/new/xns/examples/filing/debug.c [new file with mode: 0644]

diff --git a/usr/src/new/xns/examples/filing/debug.c b/usr/src/new/xns/examples/filing/debug.c
new file mode 100644 (file)
index 0000000..be4cf91
--- /dev/null
@@ -0,0 +1,11 @@
+#include <stdio.h>
+debug(a,b,c,d,e,f,g)
+       char *a;
+{
+       FILE *fd;
+       fd = fopen("/tmp/debuglog","a");
+       fprintf(fd,a,b,c,d,e,f,g);
+       fprintf(fd,"\n");
+       fclose(fd);
+}
+