view src/libiberty-test.c @ 4109:07a298959dc3

of-database: update to 2.4.1 * of-database-1-cross-fixes.patch: update cross compile patch * src/of-database.mk: update version, checksum
author John Donoghue <john.donoghue@ieee.org>
date Sun, 20 Mar 2016 07:28:02 -0400
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further 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;
    }
}