diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-11-25 19:21:37 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-11-25 19:21:37 -0800 |
commit | 355b801603593f599269d46757d2115d113f6517 (patch) | |
tree | 9c3e536750d614be2b87d1cfbde94e661bb2a43e /src | |
parent | 84aacc055a06faa1ab36fcf3064d84bd78d0ee0d (diff) |
*: explicitly include assert.h
Diffstat (limited to 'src')
-rw-r--r-- | src/bootid.c | 1 | ||||
-rw-r--r-- | src/journals.c | 1 | ||||
-rw-r--r-- | src/machid.c | 1 | ||||
-rw-r--r-- | src/readfile.c | 1 | ||||
-rw-r--r-- | src/reclaim-tail-waste.c | 1 | ||||
-rw-r--r-- | src/report-tail-waste.c | 1 | ||||
-rw-r--r-- | src/report-usage.c | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/src/bootid.c b/src/bootid.c index c2f9d24..cf953d8 100644 --- a/src/bootid.c +++ b/src/bootid.c @@ -14,6 +14,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <assert.h> #include <fcntl.h> #include <liburing.h> #include <string.h> diff --git a/src/journals.c b/src/journals.c index 7ad60d4..05b2d7a 100644 --- a/src/journals.c +++ b/src/journals.c @@ -14,6 +14,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <assert.h> #include <dirent.h> #include <fcntl.h> #include <liburing.h> diff --git a/src/machid.c b/src/machid.c index 721a4ee..adc3ca0 100644 --- a/src/machid.c +++ b/src/machid.c @@ -14,6 +14,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <assert.h> #include <fcntl.h> #include <liburing.h> #include <string.h> diff --git a/src/readfile.c b/src/readfile.c index 8af7438..0726dd7 100644 --- a/src/readfile.c +++ b/src/readfile.c @@ -14,6 +14,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <assert.h> #include <fcntl.h> #include <liburing.h> #include <sys/stat.h> diff --git a/src/reclaim-tail-waste.c b/src/reclaim-tail-waste.c index fd3cb13..4bbe0ac 100644 --- a/src/reclaim-tail-waste.c +++ b/src/reclaim-tail-waste.c @@ -14,6 +14,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <assert.h> #include <errno.h> #include <inttypes.h> #include <stdio.h> diff --git a/src/report-tail-waste.c b/src/report-tail-waste.c index fdd52cb..d6c2683 100644 --- a/src/report-tail-waste.c +++ b/src/report-tail-waste.c @@ -14,6 +14,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <assert.h> #include <inttypes.h> #include <stdio.h> #include <stdint.h> diff --git a/src/report-usage.c b/src/report-usage.c index 0cadeb7..d27121a 100644 --- a/src/report-usage.c +++ b/src/report-usage.c @@ -14,6 +14,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <assert.h> #include <inttypes.h> #include <stdint.h> #include <stdio.h> |