From f444fb7f8850bdc6c54c96b0176fece3e18b4a4c Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Thu, 30 Apr 2009 01:34:04 +0000 Subject: [PATCH] Use 'unsigned int' instead of size_t attempting to avoid header inclusion --- Makefile.netware | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.netware b/Makefile.netware index 89fdf4c7..71cb242f 100644 --- a/Makefile.netware +++ b/Makefile.netware @@ -425,7 +425,7 @@ ifeq ($(LIBARCH),CLIB) @echo $(DL)#define CARES_TYPEOF_ARES_SOCKLEN_T int$(DL) >> $@ @echo $(DL)#define CARES_SIZEOF_ARES_SOCKLEN_T 4$(DL) >> $@ else - @echo $(DL)#define CARES_TYPEOF_ARES_SOCKLEN_T size_t$(DL) >> $@ + @echo $(DL)#define CARES_TYPEOF_ARES_SOCKLEN_T unsigned int$(DL) >> $@ @echo $(DL)#define CARES_SIZEOF_ARES_SOCKLEN_T 4$(DL) >> $@ endif @echo $(DL)#define CARES_SIZEOF_LONG 4$(DL) >> $@