2022-01-04 10:21:08 +01:00
|
|
|
// Copyright (c) 2019-2022 Alexander Medvednikov. All rights reserved.
|
2020-05-07 07:47:24 +02: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 13:28:53 +02:00
|
|
|
|
2020-06-19 12:54:56 +02:00
|
|
|
$if windows {
|
|
|
|
$if tinyc {
|
2021-04-19 18:01:47 +02:00
|
|
|
#flag @VEXEROOT/thirdparty/tcc/lib/openlibm.o
|
2020-06-19 12:54:56 +02:00
|
|
|
}
|
2021-05-14 13:28:53 +02:00
|
|
|
} $else {
|
|
|
|
#flag -lm
|
2020-06-19 12:54:56 +02:00
|
|
|
}
|