1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-12-26 11:30:03 +05:30

opt_int_div.*: label as a header-only library

This commit is contained in:
Intel A80486DX2-66 2024-03-24 16:02:31 +03:00
parent 76ec85397a
commit c2b3caf728
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B
2 changed files with 3 additions and 5 deletions

View File

@ -1,7 +1,7 @@
/* /*
* opt_int_div.h * opt_int_div.h
* *
* "Optimized integer division" * "Optimized integer division": A header-only library
* *
* Author: Intel A80486DX2-66 * Author: Intel A80486DX2-66
* License: Creative Commons Zero 1.0 Universal * License: Creative Commons Zero 1.0 Universal

View File

@ -9,9 +9,8 @@
#include "opt_int_div.h" #include "opt_int_div.h"
#ifdef TEST #include <inttypes.h>
# include <inttypes.h> #include <stdio.h>
# include <stdio.h>
int main(void) { int main(void) {
printf("Loop: a > 0, b > 0\n"); printf("Loop: a > 0, b > 0\n");
@ -43,4 +42,3 @@ int main(void) {
return 0; return 0;
} }
#endif