Skip to content
Snippets Groups Projects
Select Git revision
  • ce0d6da37a3be7698be8da39d044c260dce103ad
  • master default
  • report
3 results

built_in.h

Blame
  • Forked from sce213ta / mysh-1
    Source project has a limited visibility.
    std.c 143 B
    #include <stdio.h>
    
    int main()
    {
    	int a;
    	fscanf(stdin,"%d",&a);
    	fprintf(stdout,"out:%d\n",a);
    	fprintf(stderr,"err:%d\n",a);
    	
    	return a;
    }