/* Copyright 2007-2009 Kees Cook <kees@outflux.net>, License: GPLv3 */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdint.h>
#include <string.h>
#include <stdint.h>
#include <inttypes.h>

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

    if (argc>1) {
        strcpy(buf,argv[1]);
        printf("Your first argument was: ");
        printf(buf);
        printf("\n");
    }
    else {
        fprintf(stderr,"Usage: %s ARG\n",argv[0]);
        exit(1);
    }

    return 0;
}
