gprs_llc.h: use '#pragma once'

Change-Id: Iff748fe68dbef83589bfb5e3bea5183deb365fa6
This commit is contained in:
Vadim Yanitskiy 2022-09-06 17:23:10 +07:00 committed by fixeria
parent 77cdc424cb
commit d32852664d
1 changed files with 1 additions and 5 deletions

View File

@ -1,5 +1,4 @@
#ifndef _GPRS_LLC_H
#define _GPRS_LLC_H
#pragma once
#include <stdint.h>
#include <stdbool.h>
@ -284,6 +283,3 @@ int gprs_llc_fcs(uint8_t *data, unsigned int len);
/* LLME handling routines */
struct llist_head *gprs_llme_list(void);
struct gprs_llc_lle *gprs_lle_get_or_create(const uint32_t tlli, uint8_t sapi);
#endif