no-more-secrets-rust/src/sneakers.c

22 lines
390 B
C

/*
* Copyright (c) 2017 Brian Barto
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GPL License. See LICENSE for more details.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include "nmseffect.h"
extern void rust_sneakers_effect();
int main(void) {
rust_sneakers_effect();
return 0;
}