hexdump: add header file guards [lgtm scan]

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2019-09-20 16:13:52 +02:00
parent 0f60f643a9
commit dc626a7586
1 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,9 @@
*
* @(#)hexdump.h 5.4 (Berkeley) 6/1/90
*/
#ifndef UTIL_LINUX_HEXDUMP_H
#define UTIL_LINUX_HEXDUMP_H
#include "c.h"
#include "list.h"
@ -106,3 +109,5 @@ void conv_c(struct hexdump_pr *, u_char *);
void conv_u(struct hexdump_pr *, u_char *);
int next(char **, struct hexdump *);
int parse_args(int, char **, struct hexdump *);
#endif /* UTIL_LINUX_HEXDUMP_H */