view dbhelpers.h @ 1391:8aed91ebf3c7

termcodes: make VEOL2, VWERASE, VLNEXT, ECHOCTL, and ECHOKE optional My POSIX-like platform is missing some basic termcodes. Make them optional. Signed-off-by: Ben Gardner <[email protected]>
author Ben Gardner <bgardner@wabtec.com>
date Wed, 25 May 2016 10:03:53 -0500
parents 3017bc7d6238
children d68d61e7056a
line wrap: on
line source

#ifndef DROPBEAR_DBHELPERS_H_
#define DROPBEAR_DBHELPERS_H_

/* This header defines some things that are also used by libtomcrypt/math. 
   We avoid including normal include.h since that can result in conflicting 
   definitinos - only include config.h */
#include "config.h"

#ifdef __GNUC__
#define ATTRIB_PRINTF(fmt,args) __attribute__((format(printf, fmt, args))) 
#define ATTRIB_NORETURN __attribute__((noreturn))
#define ATTRIB_SENTINEL __attribute__((sentinel))
#else
#define ATTRIB_PRINTF(fmt,args)
#define ATTRIB_NORETURN
#define ATTRIB_SENTINEL
#endif

void m_burn(void* data, unsigned int len);

#endif /* DROPBEAR_DBHELPERS_H_ */