~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/get_password.c

  • Committer: Monty Taylor
  • Date: 2008-10-22 21:18:04 UTC
  • Revision ID: monty@inaugust.com-20081022211804-0pkmwgc7mfebo5ld
Cleaned up the last commit. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
** Ask for a password from tty
22
22
** This is an own file to avoid conflicts with curses
23
23
*/
 
24
#include "config.h"
24
25
#include "libdrizzle.h"
 
26
#include <libdrizzle/get_password.h>
25
27
 
26
28
#include <string.h>
27
29
#include <stdio.h>
28
30
#include <stdlib.h>
29
31
#include <ctype.h>
 
32
#include <unistd.h>
30
33
 
31
34
#include <sys/ioctl.h>
32
35
#ifdef HAVE_TERMIOS_H                           /* For tty-password */