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

16 lines
290 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 <stdlib.h>
extern void rust_main();
int main(void)
{
rust_main();
return EXIT_SUCCESS;
}