aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2019-01-31 16:21:07 +0100
committerMax <msuraev@sysmocom.de>2019-01-31 16:21:07 +0100
commita720365c02bced8b1adf5f1c41170d6ff83b4dab (patch)
tree3661539c549a204c12b7d214a284136bbc480e5a
parentde81cedffe7eaf875201ecb40e270fb82ff411f6 (diff)
Cosmetic: use #pragma once as include guard
-rw-r--r--include/osmocom/netif/stream.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/osmocom/netif/stream.h b/include/osmocom/netif/stream.h
index 529d4d7..969d42f 100644
--- a/include/osmocom/netif/stream.h
+++ b/include/osmocom/netif/stream.h
@@ -1,5 +1,4 @@
-#ifndef _OSMO_STREAM_H_
-#define _OSMO_STREAM_H_
+#pragma once
#include <stdbool.h>
#include <stdint.h>
@@ -77,5 +76,3 @@ void osmo_stream_cli_send(struct osmo_stream_cli *cli, struct msgb *msg);
int osmo_stream_cli_recv(struct osmo_stream_cli *conn, struct msgb *msg);
/*! @} */
-
-#endif