From: Denis Ovsienko Date: Tue, 10 Aug 2021 20:26:29 +0000 (+0100) Subject: Add multiple inclusion guards to gencode.h. [skip ci] X-Git-Url: https://git.tcpdump.org/libpcap/commitdiff_plain/02bc5d9fca019a71c8148790686dc81728d778e4 Add multiple inclusion guards to gencode.h. [skip ci] --- diff --git a/gencode.h b/gencode.h index 053e85f9..647946d0 100644 --- a/gencode.h +++ b/gencode.h @@ -19,6 +19,9 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +#ifndef gencode_h +#define gencode_h + #include "pcap/funcattrs.h" /* @@ -400,3 +403,5 @@ int pcap_parse(void *, compiler_state_t *); /* XXX */ #define JT(b) ((b)->et.succ) #define JF(b) ((b)->ef.succ) + +#endif /* gencode_h */