unistd.h revision 1.1
1/*
2 * Public domain
3 * compatibility shim for openssl11
4 * overloading unistd.h is a ugly guly hack for this issue but works here
5 */
6
7#include_next <unistd.h>
8
9#include <openssl/asn1.h>
10
11int ASN1_time_parse(const char *, size_t, struct tm *, int);
12int ASN1_time_tm_cmp(struct tm *, struct tm *);
13
14