diff options
author | June McEnroe <june@causal.agency> | 2018-12-08 12:58:22 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-12-08 13:18:13 -0500 |
commit | 14c60a15bca704873f88f46495559ee7d698f985 (patch) | |
tree | 79e37e5e91b7e3f58d13c8afbc1ecc49dea0f53e /chat.h | |
parent | Add /raw command (diff) | |
download | catgirl-14c60a15bca704873f88f46495559ee7d698f985.tar.gz catgirl-14c60a15bca704873f88f46495559ee7d698f985.zip |
Add uint typedef
Diffstat (limited to '')
-rw-r--r-- | chat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chat.h b/chat.h index eaecb50..1deb693 100644 --- a/chat.h +++ b/chat.h @@ -30,6 +30,7 @@ #define err(...) do { uiHide(); err(__VA_ARGS__); } while (0) #define errx(...) do { uiHide(); errx(__VA_ARGS__); } while (0) +typedef unsigned uint; typedef unsigned char byte; struct { |