pike.git
/
src
/
post_modules
/
Nettle
/
nettle.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/post_modules/Nettle/nettle.h:1:
/* nettle.h * * Shared declarations for the various files. */
+
#if 0
+
static void
+
werror(const char *format, ...)
+
{
+
va_list args;
+
+
va_start(args, format);
+
vfprintf(stderr, format, args);
+
va_end(args);
+
}
+
#else
+
#define werror(x)
+
#endif
+
struct program; extern struct program *nettle_hash_program; extern struct program *hash_instance_program; extern struct program *nettle_hash_program; #define NO_WIDE_STRING(s) do { \ if ((s)->size_shift) \ Pike_error("Bad argument. Must be 8-bit string.\n"); \ } while(0)