diff toys/dmesg.c @ 237:7cb15eae1664

Zap toylist.h, moving contents of global structures into DEFINE_GLOBALS() macros in each C file, and making generated/globals.h from that. Rename "toy" to "this" along the way to avoid toy/toys confusion.
author Rob Landley <rob@landley.net>
date Sun, 20 Jan 2008 17:25:44 -0600
parents 163498bf547b
children
line wrap: on
line diff
--- a/toys/dmesg.c	Sat Jan 19 17:55:45 2008 -0600
+++ b/toys/dmesg.c	Sun Jan 20 17:25:44 2008 -0600
@@ -24,7 +24,12 @@
 #include "toys.h"
 #include <sys/klog.h>
 
-#define TT toy.dmesg
+DEFINE_GLOBALS(
+	long level;
+	long size;
+)
+
+#define TT this.dmesg
 
 void dmesg_main(void)
 {