Hi Bill,
After your recent C/Fortran fixes to nhash.c, I can no longer compile because 
size_t is not defined. This change got it to compile:

Index: lib/wsprd/nhash.h
===================================================================
--- lib/wsprd/nhash.h   (revision 5576)
+++ lib/wsprd/nhash.h   (working copy)
@@ -4,6 +4,7 @@
 #ifdef Win32
 #include "win_stdint.h"        /* defines uint32_t etc */
 #else
+#include <stddef.h>
 #include <stdint.h>    /* defines uint32_t etc */
 #endif

I’m surprised that no one else noticed this — could it be that I’m the only one 
working on linux at the moment?
Steve k9an


------------------------------------------------------------------------------
_______________________________________________
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel

Reply via email to