Update 2022-12-10 11:54 OpenBSD/amd64

This commit is contained in:
c0dev0id 2022-12-10 11:54:09 +01:00
parent e10f23b8eb
commit f85c7da6dc
2 changed files with 3 additions and 4 deletions

View File

@ -6,13 +6,13 @@ int main(int argc, const char *argv[])
{
unsigned long long no = 0;
for (int i=1; i<argc; i++) {
no += strtoull(argv[i], NULL, 10) / 1000000;
no += strtoull(argv[i], NULL, 10);
}
if (argc < 2)
printf("%lld\n", no);
if (argc > 1)
printf("%.0lld\n", no / (argc - 1));
printf("%.0lld\n", no / (argc - 1) / 1000000);
return 0;
}

View File

@ -62,8 +62,7 @@ set makeprg=make\ %:r
set autowrite
" Work scripts
nnoremap mm :w\|!mymake<CR>
nnoremap mt :w\|!mytest<CR>
nnoremap mm :w\|!make<CR>
" TEMPORARY FILES
set undofile