Complies to DCL37-C (Issue 59)

This commit is contained in:
Yves Rutschle 2016-01-26 18:49:57 +01:00
parent e511534b57
commit 555005f455
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
#ifndef __COMMON_H_ #ifndef COMMON_H
#define __COMMON_H_ #define COMMON_H
/* FD_SETSIZE is 64 on Cygwin, which is really low. Just redefining it is /* FD_SETSIZE is 64 on Cygwin, which is really low. Just redefining it is
* enough for the macros to adapt (http://support.microsoft.com/kb/111855) * enough for the macros to adapt (http://support.microsoft.com/kb/111855)

View File

@ -40,8 +40,8 @@ fi
if [ $QUIET -ne 1 ]; then if [ $QUIET -ne 1 ]; then
printf "#ifndef _VERSION_H_ \n" printf "#ifndef VERSION_H \n"
printf "#define _VERSION_H_ \n\n" printf "#define VERSION_H \n\n"
printf "#define VERSION \"$release\"\n" printf "#define VERSION \"$release\"\n"
printf "#endif\n" printf "#endif\n"
else else

View File

@ -1,7 +1,7 @@
/* API for probe.c */ /* API for probe.c */
#ifndef __PROBE_H_ #ifndef PROBE_H
#define __PROBE_H_ #define PROBE_H
#include "common.h" #include "common.h"
#include "tls.h" #include "tls.h"