From 555005f455df706c6754c9407654c66ca1b4feb3 Mon Sep 17 00:00:00 2001 From: Yves Rutschle Date: Tue, 26 Jan 2016 18:49:57 +0100 Subject: [PATCH] Complies to DCL37-C (Issue 59) --- common.h | 4 ++-- genver.sh | 4 ++-- probe.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/common.h b/common.h index db0ccc5..701b337 100644 --- a/common.h +++ b/common.h @@ -1,5 +1,5 @@ -#ifndef __COMMON_H_ -#define __COMMON_H_ +#ifndef COMMON_H +#define COMMON_H /* 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) diff --git a/genver.sh b/genver.sh index 4d6e76a..79fd0a0 100755 --- a/genver.sh +++ b/genver.sh @@ -40,8 +40,8 @@ fi if [ $QUIET -ne 1 ]; then - printf "#ifndef _VERSION_H_ \n" - printf "#define _VERSION_H_ \n\n" + printf "#ifndef VERSION_H \n" + printf "#define VERSION_H \n\n" printf "#define VERSION \"$release\"\n" printf "#endif\n" else diff --git a/probe.h b/probe.h index bc69acf..4d9b473 100644 --- a/probe.h +++ b/probe.h @@ -1,7 +1,7 @@ /* API for probe.c */ -#ifndef __PROBE_H_ -#define __PROBE_H_ +#ifndef PROBE_H +#define PROBE_H #include "common.h" #include "tls.h"