snippets/c/linux_loader_poc/demo.c
2022-08-19 23:59:53 +02:00

16 lines
353 B
C

/** Proof-of-concept to show different methods to load executables in the Linux kernel
*
* @copyright 2016 Steffen Vogel
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
* @author Steffen Vogel <post@steffenvogel.de>
* @link https://www.steffenvogel.de
*/
#include <stdio.h>
int main()
{
printf("Hello world\n");
return 0;
}