record: add/fix include guards where missing/broken

Signed-off-by: Mike Gelfand <mikedld@mikedld.com>
This commit is contained in:
Mike Gelfand 2025-06-24 22:50:20 +01:00 committed by Enrico Weigelt
parent c4ca14eff0
commit 26f56735c5

View File

@ -51,6 +51,9 @@ from The Open Group.
The following types and functions/macros define the ADT. The following types and functions/macros define the ADT.
*/ */
#ifndef XSERVER_SET_H
#define XSERVER_SET_H
/* an interval of set members */ /* an interval of set members */
typedef struct { typedef struct {
CARD16 first; CARD16 first;
@ -133,3 +136,5 @@ int RecordSetMemoryRequirements(RecordSetInterval * /*pIntervals */ ,
process interval; process interval;
} }
*/ */
#endif /* XSERVER_SET_H */