Standardise header include guards

Tokens that begin with two underscores __* or an underscore and an uppercase letter _X* are reserved,
so we should avoid those for our own include guards.  The standard I'm settling on for foo.h is FOO_H_.
This commit is contained in:
Kevin Easton
2017-05-10 23:30:11 +10:00
parent a329dd8404
commit 3f87eb31b1
55 changed files with 151 additions and 201 deletions

View File

@@ -5,9 +5,8 @@
* Copyright 1997 EPIC Software Labs
* See the Copyright file for license information
*/
#ifndef __exec_h__
#define __exec_h__
#ifndef EXEC_H_
#define EXEC_H_
void execcmd (char *, char *, char *, char *);
void do_processes (fd_set *);
@@ -22,4 +21,4 @@
int logical_to_index (const char *logical);
void kill_process (int, int);
#endif /* _EXEC_H_ */
#endif /* EXEC_H_ */