From 00e9350dd6f2d8e80871057d621674e85ecf1290 Mon Sep 17 00:00:00 2001 From: Nick Law Date: Fri, 23 Nov 2018 12:56:20 +0000 Subject: [PATCH] Put Function prototypes inside #ifndef/#define/#endif macro guard --- src/nwipe.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/nwipe.h b/src/nwipe.h index 33ab1e0..0ac0448 100644 --- a/src/nwipe.h +++ b/src/nwipe.h @@ -20,12 +20,13 @@ * */ -/* Function prototypes */ -int cleanup(); #ifndef NWIPE_H_ #define NWIPE_H_ +/* Function prototypes */ +int cleanup(); + #ifndef _LARGEFILE64_SOURCE #define _LARGEFILE64_SOURCE #endif