mirror of
https://github.com/labwc/labwc.git
synced 2025-11-09 13:30:01 -05:00
src: include primary header first
This is a common practice in C projects, which simply enforces that each header must compile cleanly without implicit dependencies on other headers (see also the previous commit).
This commit is contained in:
parent
c9b576982d
commit
31d42b50e2
74 changed files with 74 additions and 72 deletions
|
|
@ -4,13 +4,13 @@
|
|||
*
|
||||
* Copyright Johan Malm 2020
|
||||
*/
|
||||
#include "common/dir.h"
|
||||
#include <assert.h>
|
||||
#include <glib.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/stat.h>
|
||||
#include "common/dir.h"
|
||||
#include "common/buf.h"
|
||||
#include "common/list.h"
|
||||
#include "common/mem.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue