From e3fe01ca337c144b118d93b6930b6e9ac90864c3 Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Thu, 22 Nov 2018 11:02:01 +0100 Subject: Remplacement des #pragma once par des include guards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit La flemme de réfléchir aux problèmes de portabilité. --- crypto_aead/lilliputaei128v1/ref/test/helpers.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'crypto_aead/lilliputaei128v1/ref/test/helpers.h') diff --git a/crypto_aead/lilliputaei128v1/ref/test/helpers.h b/crypto_aead/lilliputaei128v1/ref/test/helpers.h index 96e5184..f4e5208 100644 --- a/crypto_aead/lilliputaei128v1/ref/test/helpers.h +++ b/crypto_aead/lilliputaei128v1/ref/test/helpers.h @@ -1,4 +1,5 @@ -#pragma once +#ifndef HELPERS_H +#define HELPERS_H #include #include @@ -18,3 +19,5 @@ static inline FILE* open_dump_file(const char *folder, const char* vector, const } + +#endif /* HELPERS_H */ -- cgit v1.2.3