~landronimirc/bcrypt/master

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* ====================================================================
 * Copyright (c) 2002 Johnny Shelley.  All rights reserved.
 *
 * Bcrypt is licensed under the BSD software license. See the file 
 * called 'LICENSE' that you should have received with this software
 * for details
 * ====================================================================
 */

#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>

#ifndef WIN32	/* These libraries don't exist on Win32 */
#include <termios.h>
#include <sys/time.h>
#endif

#include <sys/types.h>
#include <sys/stat.h>
#include <zlib.h>