diff options
| author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-07-16 15:52:33 +0200 |
|---|---|---|
| committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-07-21 15:49:45 +0200 |
| commit | 5a54859a8a2b60ab0d643c6890efbf87f8e29cdd (patch) | |
| tree | 04a61426cff9ab88b90304815cc81af3ae1b4d40 /tools/ipc-modem.c | |
| parent | d4e2afc9735470c5b9553073a23e606b2fc5cf2c (diff) | |
| download | hardware_replicant_libsamsung-ipc-5a54859a8a2b60ab0d643c6890efbf87f8e29cdd.tar.gz hardware_replicant_libsamsung-ipc-5a54859a8a2b60ab0d643c6890efbf87f8e29cdd.tar.bz2 hardware_replicant_libsamsung-ipc-5a54859a8a2b60ab0d643c6890efbf87f8e29cdd.zip | |
tools: reorder includes
This reorders includes alphabetically and groups them together:
- C standard library includes of depth 1 are grouped together
- "System" libraries of depth > 1 age grouped together
- The (lib)samsung-ipc include(s) is/are grouped together
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Reviewed-by: Joonas Kylmälä <joonas.kylmala@iki.fi>
Diffstat (limited to 'tools/ipc-modem.c')
| -rw-r--r-- | tools/ipc-modem.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/tools/ipc-modem.c b/tools/ipc-modem.c index 6b4e0fa..9314de6 100644 --- a/tools/ipc-modem.c +++ b/tools/ipc-modem.c @@ -18,19 +18,20 @@ * along with libsamsung-ipc. If not, see <http://www.gnu.org/licenses/>. */ -#include <stdlib.h> -#include <stdio.h> -#include <unistd.h> -#include <stdint.h> +#include <fcntl.h> +#include <getopt.h> +#include <pthread.h> #include <stdbool.h> +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> #include <termios.h> -#include <fcntl.h> +#include <unistd.h> #include <string.h> + #include <sys/ioctl.h> #include <sys/stat.h> #include <sys/types.h> -#include <pthread.h> -#include <getopt.h> #include <samsung-ipc.h> |
