summaryrefslogtreecommitdiffstats
path: root/lib/qfstring.h
diff options
context:
space:
mode:
authorChris Hall <chris.hall@highwayman.com>2011-03-21 01:16:05 +0000
committerChris Hall <chris.hall@highwayman.com>2011-03-21 01:16:05 +0000
commit9470cb2c32eab220f796b1438b787528272cbe84 (patch)
treeb9b2cc12446173436d2bc7a32e82cc3378ec721e /lib/qfstring.h
parent5cae7eea451f2b7d65b5892e2c1dafc70f8b836e (diff)
downloadquagga-ex11p.tar.bz2
quagga-ex11p.tar.xz
Upgrade of "pipework" -- including piping to/from shell commandsex11p
Version 0.99.15ex11p A major overhaul.
Diffstat (limited to 'lib/qfstring.h')
-rw-r--r--lib/qfstring.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/qfstring.h b/lib/qfstring.h
index 990b4ef4..c57bd4ea 100644
--- a/lib/qfstring.h
+++ b/lib/qfstring.h
@@ -30,9 +30,6 @@
* strings, particularly where the string handling must be async-signal-safe.
*/
-typedef struct qf_str qf_str_t ;
-typedef struct qf_str* qf_str ;
-
/* When initialised a qf_string is set:
*
* str = start of string -- and this is never changed
@@ -47,6 +44,9 @@ struct qf_str
char* end ; /* end of string */
} ;
+typedef struct qf_str qf_str_t[1] ;
+typedef struct qf_str* qf_str ;
+
/*------------------------------------------------------------------------------
* Print format flags for number printing
*/