From 47afca9fe6ddfd9eb1e9dc6b9f040437af2b3e6c Mon Sep 17 00:00:00 2001 From: hasufell Date: Sun, 25 May 2014 20:50:22 +0200 Subject: [PATCH] ASCII->POLY: rename header guard --- src/ascii_poly.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ascii_poly.h b/src/ascii_poly.h index fc15bf0..59c32f3 100644 --- a/src/ascii_poly.h +++ b/src/ascii_poly.h @@ -25,8 +25,8 @@ * @brief header for ascii_poly.c */ -#ifndef ASCII_POLY_H_ -#define ASCII_POLY_H_ +#ifndef NTRU_ASCII_POLY_H_ +#define NTRU_ASCII_POLY_H_ #include "context.h" @@ -39,4 +39,4 @@ fmpz_poly_t **ascii_to_poly(char *to_poly, ntru_context *ctx); char *poly_to_ascii(fmpz_poly_t **poly_array, ntru_context *ctx); -#endif /* ASCII_POLY_H_ */ +#endif /* NTRU_ASCII_POLY_H_ */