irssi/irssi-config.h

10 lines
170 B
C
Raw Permalink Normal View History

2020-06-19 15:03:31 +08:00
#include <bits/wordsize.h>
2023-04-12 14:46:18 +08:00
#if __WORDSIZE == 32
#include "irssi-config-32.h"
#elif __WORDSIZE == 64
#include "irssi-config-64.h"
#else
#error "Unknown word size"
2020-06-19 15:03:31 +08:00
#endif