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.
mxe/src/libiberty-test.c

26 lines
446 B

/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <libiberty.h>
int main(int argc, char *argv[])
{
char *s;
(void)argc;
(void)argv;
if (asprintf(&s, "Test%i", 123) >= 0) {
printf("asprintf output: %s\n", s);
free(s);
return 0;
} else {
printf("asprintf() failed!\n");
return 1;
}
}