You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

29 lines
575 B

#ifdef DODEBUG
#include <assert.h>
#define ASSERT(x) assert(x)
#define DPRINTF(fmt,args...) fprintf(stderr, fmt, ##args)
#else
#define ASSERT(x) /* nothing */
#define DPRINTF(fmt,args...) /* nothing */
#endif
#define BUFSIZE 4096
#define MAIN_MENU "debian-installer/main-menu"
#define MISSING_PROVIDE "debian-installer/missing-provide"
#define ITEM_FAILURE "debian-installer/main-menu/item-failure"
#include <debian-installer.h>
#define NEVERDEFAULT 900
enum
{
EXIT_OK = 0,
EXIT_BACKUP = 10,
EXIT_QUIT = 11,
EXIT_RESTART = 12,
};
/* vim: noexpandtab sw=8
*/