blob: a46b501e188ed722fa54eed7afa5bf9b3a1b7d2f [file] [log] [blame]
#include <assert.h>
#include <inttypes.h>
#include <stdlib.h>
extern "C" int32_t double_foo();
int main(int argc, char** argv) {
assert(double_foo() == 84);
return EXIT_SUCCESS;
}