add header guard in mod.h :PPP
This commit is contained in:
parent
ce5cd7ac79
commit
d6b05cd7b7
1 changed files with 5 additions and 0 deletions
5
mod.h
5
mod.h
|
@ -1,3 +1,6 @@
|
||||||
|
#ifndef _MODFETCH_MOD_H
|
||||||
|
#define _MODFETCH_MOD_H
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
uint8_t version_major(void);
|
uint8_t version_major(void);
|
||||||
|
@ -8,3 +11,5 @@ const char *module_name(void);
|
||||||
const char *get(void);
|
const char *get(void);
|
||||||
|
|
||||||
void init(char **config);
|
void init(char **config);
|
||||||
|
|
||||||
|
#endif // _MODFETCH_MOD_H
|
||||||
|
|
Loading…
Reference in a new issue