Cleanup: apply `include-what-you-use` guideline for `uint*_t`
[lttng-ust.git] / tests / test-app-ctx / hello.c
index 197df21e1ada8bbc1d9e1cdadfc992ae522abd0c..e9e45ec7c51db46aae588276d14085322136ac06 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#include <stdio.h>
-#include <unistd.h>
-#include <sys/mman.h>
-#include <stdarg.h>
-#include <sys/types.h>
-#include <sys/stat.h>
 #include <fcntl.h>
 #include <signal.h>
+#include <stdarg.h>
+#include <stdint.h>
+#include <stdio.h>
 #include <string.h>
+#include <sys/mman.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <unistd.h>
 /*
  * Work-around inet.h missing struct mmsghdr forward declaration, with
  * triggers a warning when system files warnings are enabled.
  */
 struct mmsghdr;
 #include <arpa/inet.h>
+#include <stddef.h>
 #include <stdlib.h>
 #include <stdbool.h>
 
This page took 0.023256 seconds and 4 git commands to generate.