-/*
+/* getpass.c -- read a password without echo.
+ *
* Portions of this code are Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $Id$
*/
-#include <stdio.h>
+#include <h/mh.h>
#include <termios.h>
-#include <unistd.h> /* for isatty() */
-#include "h/mh.h" /* for adios() */
/* We don't use MAX_PASS here because the maximum password length on a remote
POP daemon will have nothing to do with the length on our OS. 256 is
- arbitrary but hopefully big enough to accomodate everyone. */
+ arbitrary but hopefully big enough to accommodate everyone. */
#define MAX_PASSWORD_LEN 256
#ifndef TCSANOW