add header guard in mod.h :PPP

This commit is contained in:
jacekpoz 2024-02-10 00:33:33 +01:00
parent ce5cd7ac79
commit d6b05cd7b7
No known key found for this signature in database
GPG key ID: 94E812A8B12AAE3C

5
mod.h
View file

@ -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