From: Nick Terrell Date: Fri, 23 Sep 2016 00:12:50 +0000 (-0700) Subject: Add include guards to datagen.h X-Git-Tag: v1.1.0~12^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b2c0dbed06509a4fb6ce57e0ae61a43a8e0c4bb;p=thirdparty%2Fzstd.git Add include guards to datagen.h --- diff --git a/programs/datagen.h b/programs/datagen.h index 55f9d8283..094056b69 100644 --- a/programs/datagen.h +++ b/programs/datagen.h @@ -6,7 +6,8 @@ * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ - +#ifndef DATAGEN_H +#define DATAGEN_H #include /* size_t */ @@ -22,3 +23,5 @@ void RDG_genBuffer(void* buffer, size_t size, double matchProba, double litProba RDG_genStdout Same as RDG_genBuffer, but generates data into stdout */ + +#endif