Add multiple inclusion guard

This commit is contained in:
Todd C. Miller
2011-04-05 11:42:53 -04:00
parent 021e2a94b9
commit b9d15e8256

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2007-2010 * Copyright (c) 2007-2011
* *
* Permission to use, copy, modify, and distribute this software for any * Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above * purpose with or without fee is hereby granted, provided that the above
@@ -14,6 +14,9 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
#ifndef _SUDO_NSS_H
#define _SUDO_NSS_H
struct lbuf; struct lbuf;
struct passwd; struct passwd;
@@ -37,3 +40,5 @@ struct sudo_nss {
TQ_DECLARE(sudo_nss) TQ_DECLARE(sudo_nss)
struct sudo_nss_list *sudo_read_nss(void); struct sudo_nss_list *sudo_read_nss(void);
#endif /* _SUDO_NSS_H */