Welcome to mirror list, hosted at ThFree Co, Russian Federation.

includes.h « ssh « crypto « src - github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23b4aeeb6828a73a9e8592acdcda000104dfff82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// mimic openSSH-portable's includes.h file to be able to use
// its unmodified blowfish code

#define HAVE_BLF_H

#ifndef _GNU_SOURCE
#define _GNU_SOURCE /* activate extra prototypes for glibc */
#endif
#include <sys/types.h>

#ifdef _WIN32
#include <stdint.h>

typedef uint32_t u_int32_t;
typedef uint16_t u_int16_t;
typedef uint8_t u_int8_t;

#define bzero(p, s) memset(p, 0, s)
#endif