Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: third_party/scrypt/lib/util/warn.h

Issue 11637016: Add "scrypt" to third_party for secure password hashes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add scrypt to .gitignore Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #ifndef _WARN_H_
2 #define _WARN_H_
3
4 #ifdef HAVE_ERR_H
5 #include <err.h>
6 #else
7 #define NEED_WARN_PROGNAME
8 const char * warn_progname;
9 void warn(const char *, ...);
10 void warnx(const char *, ...);
11 #endif
12
13 #endif /* !_WARN_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698