diff options
| -rw-r--r-- | .comfile | 1 | ||||
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | irc.c | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/.comfile b/.comfile deleted file mode 100644 index 4558567..0000000 --- a/.comfile +++ /dev/null @@ -1 +0,0 @@ -irc.c @@ -1,6 +1,6 @@ BIN = irc -CFLAGS = -std=c99 -Os -D_POSIX_C_SOURCE=201112 -D_GNU_SOURCE -D_XOPEN_CURSES -D_XOPEN_SOURCE_EXTENDED=1 -D_BSD_SOURCE +CFLAGS = -std=c99 -Os -D_POSIX_C_SOURCE=201112 -D_GNU_SOURCE -D_XOPEN_CURSES -D_XOPEN_SOURCE_EXTENDED=1 -D_DEFAULT_SOURCE LDFLAGS = -lncursesw all: ${BIN} @@ -42,7 +42,7 @@ enum { RuneInvalid = 0xFFFD, }; -typedef unsigned int Rune; +typedef wchar_t Rune; static struct { int x; |
