changeset 63:6bbe11ae6bf5

Cleanup.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 27 Dec 2015 00:14:45 +0200
parents 0d01efc3c803
children 2bf85a700e23
files sidinfo.c
diffstat 1 files changed, 15 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/sidinfo.c	Sun Dec 27 00:03:08 2015 +0200
+++ b/sidinfo.c	Sun Dec 27 00:14:45 2015 +0200
@@ -46,6 +46,21 @@
 
 typedef struct
 {
+    int cmd;
+    char *str;
+    char chr;
+} PSFStackItem;
+
+
+typedef struct
+{
+    int nitems, nallocated;
+    PSFStackItem *items;
+} PSFStack;
+
+
+typedef struct
+{
     uint32_t flag;
     char *name;
     char *lname;
@@ -80,21 +95,6 @@
 static const int noptPSFlags = sizeof(optPSFlags) / sizeof(optPSFlags[0]);
 
 
-typedef struct
-{
-    int cmd;
-    char *str;
-    char chr;
-} PSFStackItem;
-
-
-typedef struct
-{
-    int nitems, nallocated;
-    PSFStackItem *items;
-} PSFStack;
-
-
 // Option variables
 BOOL	optParsable = FALSE,
         optNoNamePrefix = FALSE,