diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-05-26 14:37:07 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-05-26 14:37:07 +0000 |
commit | 858a717796d7aa48fe9b22a6b035fec9edbb5a2a (patch) | |
tree | 1e9753c5047d3c947080a314fa5e3124def6f947 /nest/password.h | |
parent | 7eb01479c92cd2f615993f2112aa5986f3e2b0ad (diff) |
Change format of passwords (less ;'s) and fix password.h to allow
multiple inclusions.
Diffstat (limited to 'nest/password.h')
-rw-r--r-- | nest/password.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nest/password.h b/nest/password.h index db2a8bff..b457495a 100644 --- a/nest/password.h +++ b/nest/password.h @@ -6,6 +6,8 @@ * Can be freely distributed and used under the terms of the GNU GPL. */ +#ifndef PASSWORD_H +#define PASSWORD_H struct password_item { struct password_item *next; char *password; @@ -14,3 +16,4 @@ struct password_item { }; extern struct password_item *last_password_item; +#endif |