aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/math/math.c.v
blob: 503b6ab8bd96eb3afadbe169a720c9f9612c1820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module math

#include <math.h>

$if windows {
	$if tinyc {
		#flag @VEXEROOT/thirdparty/tcc/lib/openlibm.o
	}
} $else {
	#flag -lm
}