diff options
-rw-r--r-- | include/ctables.h | 2 | ||||
-rw-r--r-- | include/inspircd.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/ctables.h b/include/ctables.h index 3666718b6..a16f5732f 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -22,8 +22,6 @@ #include "base.h" #include "typedefs.h" -typedef void (handlerfunc) (char**, int, userrec*); - /** A structure that defines a command */ class command_t : public Extensible diff --git a/include/inspircd.h b/include/inspircd.h index a7c863d53..807b6cbaf 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -67,6 +67,8 @@ #define IS_REMOTE(x) (x->fd < 0) #define IS_MODULE_CREATED(x) (x->fd == FD_MAGIC_NUMBER) +typedef void (handlerfunc) (char**, int, userrec*); + class serverstats { public: |