blob: 969c92d810872644e1f83fdf5d6d75a034ef3fee [file] [log] [blame]
/*
* Test if the provided LDFLAGS support lazy linking
*/
#include <stdio.h>
#include <stdlib.h>
#include "../libcap/execable.h"
extern int nothing_sets_this(void);
extern void nothing_uses_this(void);
void nothing_uses_this(void)
{
nothing_sets_this();
}
SO_MAIN(int argc, char **argv)
{
exit(0);
}