view src/libiberty-test.c @ 6037:99125d7343bf release octave-rc-7.0.90

Update version numbers and build rules for Octave 7.0.90 release candidate. * src/stable-octave.mk: Update version to 7.0.91. * src/release-octave.mk: Update version to 7.0.90. Update checksum for release candidate. Merge build rule changes from stable-octave.mk.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 06 Jan 2022 13:10:12 +0100
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;
    }
}