From eaa614cb9e7e72701e6ac479ff570c04bae497e0 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 2 May 2010 11:26:34 +0200 Subject: [gprs] Use stdint.h types (uintXX_t instead of u_intXX_t) libosmocore already uses them, it's time (at least for new code) in openbsc to do the same. --- openbsc/include/openbsc/gprs_llc.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'openbsc/include/openbsc/gprs_llc.h') diff --git a/openbsc/include/openbsc/gprs_llc.h b/openbsc/include/openbsc/gprs_llc.h index cd4e21523..2ed2d12ea 100644 --- a/openbsc/include/openbsc/gprs_llc.h +++ b/openbsc/include/openbsc/gprs_llc.h @@ -1,6 +1,8 @@ #ifndef _GPRS_LLC_H #define _GPRS_LLC_H +#include + /* Section 4.7 LLC Layer Structure */ enum gprs_llc_sapi { GPRS_SAPI_GMM = 1, @@ -15,6 +17,6 @@ enum gprs_llc_sapi { int gprs_llc_rcvmsg(struct msgb *msg, struct tlv_parsed *tv); -int gprs_llc_tx_ui(struct msgb *msg, u_int8_t sapi, int command); +int gprs_llc_tx_ui(struct msgb *msg, uint8_t sapi, int command); #endif -- cgit v1.2.3