File: streflopC.cpp

package info (click to toggle)
megaglest 3.13.0-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 13,416 kB
  • sloc: cpp: 144,271; ansic: 11,861; sh: 3,233; perl: 1,904; python: 1,751; objc: 142; asm: 42; makefile: 22
file content (27 lines) | stat: -rw-r--r-- 437 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* Copyright (C) 2009 Tobi Vollebregt */

#include "streflopC.h"

#include "../../include/platform/common/streflop_cond.h"

#ifdef __cplusplus
extern "C" {
#endif

void streflop_init_Simple() {
	streflop_init<Simple>();
}

void streflop_init_Double() {
	streflop_init<Double>();
}

#if defined(Extended)
void streflop_init_Extended() {
	streflop_init<Extended>();
}
#endif // defined(Extended)

#ifdef __cplusplus
} // extern "C"
#endif