Update to the newest upstream version.
[vlp.git] / head / comm.h
index 44cb6be3ff8613b1d78956bf0c43a83d33bb3254..4ebc08b850be8f1a23119e971741f791b1ea023b 100644 (file)
@@ -12,20 +12,20 @@ typedef struct {
     int mark;
 } paddr;
 
-struct ctrl_msg
+typedef struct 
 {
     paddr sender;       /* address of the sender and */
     paddr receiver;   /* receiver of the message */
     int type;      /* message type */
     int par;         /* prototype or error signal number */
-};
+} ctrl_msg;
 
 
 
 typedef struct
 {
-    struct ctrl_msg control;
-    char params[ 256-sizeof(struct ctrl_msg) ];
+    ctrl_msg control;
+    char params[ 256-sizeof(ctrl_msg) ];
 } messg;