1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-09-19 14:55:34 +05:30

opt_int_div.h: prevent multiple inclusion

This commit is contained in:
Intel A80486DX2-66 2024-06-26 12:16:50 +03:00
parent 998b3a1e28
commit ce575434ef
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -9,6 +9,9 @@
* License: Unlicense
*/
#ifndef _OPT_INT_DIV_H
#define _OPT_INT_DIV_H
#include <math.h>
#include <stdint.h>
@ -46,3 +49,5 @@
: \
((a) / (b)) )) \
) /* end */
#endif /* _OPT_INT_DIV_H */