osmo-epdg: add protection against multiple includes of osmo_epdg_utils.h

This commit is contained in:
Alexander Couzens 2023-11-28 17:28:49 +00:00
parent 1c92c4d83e
commit ef057c8489
1 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,9 @@
*
*/
#ifndef OSMO_EPDG_UTILS_H_
#define OSMO_EPDG_UTILS_H_
#include <osmocom/core/msgb.h>
#include <utils/chunk.h>
#include <utils/identification.h>
@ -25,3 +28,5 @@
struct msgb *chunk_to_msgb(chunk_t *chunk);
int get_imsi(identification_t *id, char *imsi, size_t imsi_len);
#endif /* OSMO_EPDG_UTILS_H_ */