summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/vmcircbuf_mmap_tmpfile.cc
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2019-08-07 22:21:18 +0200
committerMarcus Müller <marcus@hostalia.de>2019-08-09 23:04:28 +0200
commitd24b0c8f1ebe1a9681271c014659bf2ecc613e50 (patch)
treea18051dccba5266904571dce8a93128ad62e8453 /gnuradio-runtime/lib/vmcircbuf_mmap_tmpfile.cc
parent65599ad299f030d302386fcda9bc0e3175d9a828 (diff)
clang-format: Ordering all the includes
clang-format: ordering includes in gnuradio-runtime clang-format: ordering includes in gr-filter clang-format: ordering includes in gr-fft clang-format: ordering includes in gr-audio clang-format: ordering includes in gr-analog clang-format: ordering includes in gr-fec clang-format: ordering includes in gr-wavelet clang-format: ordering includes in gr-zeromq clang-format: ordering includes in gr-vocoder clang-format: ordering includes in gr-video-sdl clang-format: ordering includes in gr-trellis clang-format: ordering includes in gr-blocks clang-format: ordering includes in gr-digital clang-format: ordering includes in gr-uhd clang-format: ordering includes in gr-dtv clang-format: ordering includes in gr-channels clang-format: ordering includes in gr-qtgui clang_format.py: re-enable include reordering
Diffstat (limited to 'gnuradio-runtime/lib/vmcircbuf_mmap_tmpfile.cc')
-rw-r--r--gnuradio-runtime/lib/vmcircbuf_mmap_tmpfile.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnuradio-runtime/lib/vmcircbuf_mmap_tmpfile.cc b/gnuradio-runtime/lib/vmcircbuf_mmap_tmpfile.cc
index d9eec36df4..ec5f320ab1 100644
--- a/gnuradio-runtime/lib/vmcircbuf_mmap_tmpfile.cc
+++ b/gnuradio-runtime/lib/vmcircbuf_mmap_tmpfile.cc
@@ -25,22 +25,22 @@
#endif
#include "vmcircbuf_mmap_tmpfile.h"
-#include <stdexcept>
#include <assert.h>
-#include <unistd.h>
#include <stdlib.h>
+#include <unistd.h>
+#include <stdexcept>
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
-#include <fcntl.h>
+#include "pagesize.h"
+#include <gnuradio/sys_paths.h>
#include <errno.h>
+#include <fcntl.h>
#include <stdio.h>
#include <string.h>
-#include "pagesize.h"
-#include <gnuradio/sys_paths.h>
namespace gr {