2022-01-04 09:21:08 +00:00
|
|
|
// Copyright (c) 2019-2022 Alexander Medvednikov. All rights reserved.
|
2020-05-07 05:47:24 +00:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
module math
|
|
|
|
|
|
|
|
#include <math.h>
|
2021-05-14 11:28:53 +00:00
|
|
|
|
2020-06-19 10:54:56 +00:00
|
|
|
$if windows {
|
|
|
|
$if tinyc {
|
2021-04-19 16:01:47 +00:00
|
|
|
#flag @VEXEROOT/thirdparty/tcc/lib/openlibm.o
|
2020-06-19 10:54:56 +00:00
|
|
|
}
|
2021-05-14 11:28:53 +00:00
|
|
|
} $else {
|
|
|
|
#flag -lm
|
2020-06-19 10:54:56 +00:00
|
|
|
}
|