Import scrypt-1.1.6.tgz with SHA-256
dfd0d1a544439265bbb9b58043ad3c8ce50a3987b44a61b1d39fd7a3ed5b7fb8
This commit is contained in:
parent
b490e825f3
commit
1acdffde66
30 changed files with 13307 additions and 0 deletions
13
lib/util/warn.h
Normal file
13
lib/util/warn.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
#ifndef _WARN_H_
|
||||
#define _WARN_H_
|
||||
|
||||
#ifdef HAVE_ERR_H
|
||||
#include <err.h>
|
||||
#else
|
||||
#define NEED_WARN_PROGNAME
|
||||
const char * warn_progname;
|
||||
void warn(const char *, ...);
|
||||
void warnx(const char *, ...);
|
||||
#endif
|
||||
|
||||
#endif /* !_WARN_H_ */
|
Reference in a new issue