Rev 23 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: libs.c 1 2024-08-20 19:18:25Z nishi $ */
#include "config.h"
#include <stdio.h>
int main(){
#if defined(USE_SQLITE)
printf("-lsqlite3");
#elif defined(USE_GDBM)
printf("-lgdbm -lgdbm_compat");
#endif
printf("\n");
return 0;
}