snippets/c/linux_loader_poc/demo.c

17 lines
353 B
C
Raw Permalink Normal View History

/** 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>
2022-08-19 23:59:53 +02:00
* @link https://www.steffenvogel.de
*/
#include <stdio.h>
int main()
{
printf("Hello world\n");
return 0;
}