1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-12-28 00:00:18 +05:30

floatscan-experiment.c: sort #includes

This commit is contained in:
Intel A80486DX2-66 2024-03-02 15:20:37 +03:00
parent b17b8aa71a
commit 223393b38c
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -9,13 +9,13 @@
* License: Creative Commons Zero 1.0 Universal * License: Creative Commons Zero 1.0 Universal
*/ */
#include <stdint.h> #include <ctype.h>
#include <stdio.h> #include <errno.h>
#include <math.h>
#include <float.h> #include <float.h>
#include <limits.h> #include <limits.h>
#include <errno.h> #include <math.h>
#include <ctype.h> #include <stdint.h>
#include <stdio.h>
/* wrapping code --- beginning */ /* wrapping code --- beginning */
#define shgetc(f) fgetc(f) #define shgetc(f) fgetc(f)