1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-30 13:52:23 +00:00

Add include guards to all the include files in inc/ which were missing them. (#189)

As a prerequisite for cleaning up some other include issues, all the
include files in inc/ should have an include guard.  All the xxxdefs.h
were created with them, but most older files were not.
This commit is contained in:
Nick Briggs
2021-01-06 19:06:42 -08:00
committed by GitHub
parent ebfa196372
commit a093d80fa5
61 changed files with 183 additions and 8 deletions

3
inc/native.h Executable file → Normal file
View File

@@ -1,3 +1,5 @@
#ifndef NATIVE_H
#define NATIVE_H 1
/* $Id: native.h,v 1.2 1999/01/03 02:06:18 sybalsky Exp $ (C) Copyright Venue, All Rights Reserved */
@@ -822,3 +824,4 @@ extern int Irq_Stk_End;
extern int Irq_Stk_Check;
extern LispPTR native_closure_env;
#endif /* NATIVE_H */