minor tweaks for compiler warnings - irc - IRC client based on c9x.me/irc client
HTML git clone git://git.codemadness.org/irc
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 294e0d2522d6044bf68dc232f87d00703c756d17
DIR parent 7cf5b1709a715eb8af0caadb3af229e04895a822
HTML Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date: Mon, 21 Nov 2016 16:27:28 -0500
minor tweaks for compiler warnings
Diffstat:
D .comfile | 1 -
M Makefile | 2 +-
M irc.c | 2 +-
3 files changed, 2 insertions(+), 3 deletions(-)
---
DIR diff --git a/.comfile b/.comfile
@@ -1 +0,0 @@
-irc.c
DIR diff --git a/Makefile b/Makefile
@@ -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}
DIR diff --git a/irc.c b/irc.c
@@ -42,7 +42,7 @@ enum {
RuneInvalid = 0xFFFD,
};
-typedef unsigned int Rune;
+typedef wchar_t Rune;
static struct {
int x;