Use '#pragma once' in all headers

This commit is contained in:
Martin Lund 2022-02-13 00:00:17 +01:00
parent b6eac3f001
commit 2ea4b973f0
3 changed files with 3 additions and 12 deletions

View file

@ -19,8 +19,7 @@
* 02110-1301, USA.
*/
#ifndef OPTIONS_H
#define OPTIONS_H
#pragma once
#include <stdbool.h>
#include <limits.h>
@ -49,5 +48,3 @@ struct option_t
extern struct option_t option;
void parse_options(int argc, char *argv[]);
#endif