X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/d52fe63fc81f7e44faaae711812a211a78434976..9bccf70c0258c7cac2dcb80011b2a964d884c552:/bsd/sys/clist.h diff --git a/bsd/sys/clist.h b/bsd/sys/clist.h index 1ff1e0dbb..64cb2eaea 100644 --- a/bsd/sys/clist.h +++ b/bsd/sys/clist.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. + * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * @@ -58,16 +58,21 @@ #ifndef _SYS_CLIST_H_ #define _SYS_CLIST_H_ +#include + +#ifdef __APPLE_API_PRIVATE +#ifdef KERNEL + struct cblock { struct cblock *c_next; /* next cblock in queue */ char c_quote[CBQSIZE]; /* quoted characters */ char c_info[CBSIZE]; /* characters */ }; -#ifdef KERNEL extern struct cblock *cfree, *cfreelist; extern int cfreecount, nclist; -#endif +#endif /* KERNEL */ +#endif /* __APPLE_API_PRIVATE */ #endif /* _SYS_CLIST_H_ */