view src/liboauth-test.c @ 4356:2dbbba3cfa86

of-dicom: update to 0.2.0 * src/of-dicom.mk: update version, checksum, if non navtive, set CMAKE_BINARY and pass to build * of-dicom-1-fixes.patch: removed * of-dicom-2-gdcm2.4.patch: removed * dist-files.mk: removed unused patches
author John D
date Thu, 23 Feb 2017 14:08:41 -0500
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <stdio.h>
#include <oauth.h>

int main (int argc, char *argv[])
{
    (void)argc;
    (void)argv;

    printf("Nonce: %s", oauth_gen_nonce());
    return (0);
}