Skip to content
Snippets Groups Projects
Select Git revision
  • 8ed1fa992c5e8e9aa3694e064db294a5c3f7416c
  • master default
  • undefined
3 results

test.c

Blame
  • Forked from sce213ta / mysh-1
    Source project has a limited visibility.
    test.c 126 B
    #include<string.h>
    #include<stdio.h>
    #include<unistd.h>
    
    void main(){
    
    	while(1){
    		printf("background\n");
    		sleep(5);
    	}
    }