diff options
author | Simon Josefsson <simon@josefsson.org> | 2005-05-26 15:11:13 +0000 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2005-05-26 15:11:13 +0000 |
commit | 2f0e77d5a6be5cdb70f129c347aa4ebea3d5edea (patch) | |
tree | 7d2ddd2c7d0b36669990790a0cde8c22ce70686d /gl/getpass.h | |
parent | a3ba0004219d513419319844213ab7d612fc016d (diff) | |
download | gnutls-2f0e77d5a6be5cdb70f129c347aa4ebea3d5edea.tar.gz |
Update.
Diffstat (limited to 'gl/getpass.h')
-rw-r--r-- | gl/getpass.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gl/getpass.h b/gl/getpass.h index 6502126497..bdff8754d4 100644 --- a/gl/getpass.h +++ b/gl/getpass.h @@ -14,18 +14,18 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef GETPASS_H -#define GETPASS_H +# define GETPASS_H /* Get getpass declaration, if available. */ -#include <unistd.h> +# include <unistd.h> -#if defined HAVE_DECL_GETPASS && !HAVE_DECL_GETPASS +# if defined HAVE_DECL_GETPASS && !HAVE_DECL_GETPASS /* Read a password of arbitrary length from /dev/tty or stdin. */ char *getpass (const char *prompt); -#endif +# endif #endif /* GETPASS_H */ |