소스 검색

Removing unrelated file

Vinicius Teshima 1 년 전
부모
커밋
d937ddf85c
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      t.c

+ 0 - 1
t.c

@@ -1 +0,0 @@
-extern char *tzname[2]; void main(void) {tzset(); long int t = time(0); int h = ((t / 3600) + (atoi(tzname[0]))) % 24; int m = (t / 60) % 60; int s = t % 60; printf("%d:%d:%d\n", h, m, s);}