Show More
Commit Description:
add auto setting of config.time_zone to be the system timezone (from either /etc/timezone or /etc/sysconfig/clock)
Commit Description:
add auto setting of config.time_zone to be the system timezone (from either /etc/timezone or /etc/sysconfig/clock)
File last commit:
Show/Diff file:
Action:
test/data/add_nonzero_exit_status.c | 12 lines | 127 B | text/x-c | CLexer |
#include <stdio.h>
int main()
{
int a,b;
int r;
r = scanf("%d %d",&a,&b);
printf("%d\n",a+b);
a+=r;
return 10;
}