summaryrefslogtreecommitdiffstats
path: root/src/s_struct.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/s_struct.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/s_struct.h b/src/s_struct.h
index b45af9f..d678c36 100644
--- a/src/s_struct.h
+++ b/src/s_struct.h
@@ -18,6 +18,13 @@
#include "d_define.h"
+typedef struct s_lvars
+{
+ char *name;
+ char *val;
+ struct s_lvars *next;
+} t_lvars;
+
typedef struct s_lalias
{
char *name;
@@ -25,13 +32,6 @@ typedef struct s_lalias
struct s_lalias *next;
} t_lalias;
-typedef struct s_lvars
-{
- struct s_lvars *next;
- char *name;
- char *val;
-} t_lvars;
-
/*
** redir(int8_t) index
** -------------------