1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 07:30:21 +00:00

Add multiple include guard to cell.h

This commit is contained in:
Nick Briggs 2020-09-04 16:27:23 -07:00
parent 7bf5e18fbd
commit 5fb5d93893

View File

@ -1,3 +1,5 @@
#ifndef CELL_H
#define CELL_H 1
/* $Id: cell.h,v 1.2 1999/01/03 02:05:55 sybalsky Exp $ (C) Copyright Venue, All Rights Reserved */
/************************************************************************/
@ -418,3 +420,4 @@ struct cadr_cell {
} else \
dest = cadr(parm); \
}
#endif