view src/liboauth-test.c @ 3941:1368ac3ea124

of-tsa: update to v4.2.9 * src/of-tsa.mk: update version, checksum * src/of-tsa-1-cross-fixes.patch: new file * dist-files.mk: add of-tsa-1-cross-fixes.patch * build_packages.m: update tsa version
author John Donoghue <john.donoghue@ieee.org>
date Sun, 17 May 2015 21:02:38 -0400
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);
}