aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/ethash/ethashc.go
blob: 25863828fbaad937d1052a32f6d90eef48a4b07e (plain) (blame)
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
package ethash

/*
#cgo CFLAGS: -std=gnu99 -Wall
#cgo windows CFLAGS: -mno-stack-arg-probe
#cgo LDFLAGS: -lm

#include "src/libethash/internal.c"
#include "src/libethash/sha3.c"
#include "src/libethash/io.c"

#ifdef _WIN32
#   include "src/libethash/util_win32.c"
#   include "src/libethash/io_win32.c"
#   include "src/libethash/mmap_win32.c"
#else
#   include "src/libethash/io_posix.c"
#endif

// 'gateway function' for calling back into go.
extern int ethashGoCallback(unsigned);
int ethashGoCallback_cgo(unsigned percent) { return ethashGoCallback(percent); }

*/
import "C"