aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/ethash/libethash/util.c
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-03-06 20:27:11 +0800
committerFelix Lange <fjl@twurst.com>2015-03-06 20:28:00 +0800
commit71e510540e817550f6e28ca0acc8136313160095 (patch)
treeb7aad8acca469a447b196df566a7446a526841e5 /Godeps/_workspace/src/github.com/ethereum/ethash/libethash/util.c
parent76e4e233adfd4ea50e801a1c6a7d08310651db93 (diff)
downloadgo-tangerine-71e510540e817550f6e28ca0acc8136313160095.tar.gz
go-tangerine-71e510540e817550f6e28ca0acc8136313160095.tar.zst
go-tangerine-71e510540e817550f6e28ca0acc8136313160095.zip
Godeps: bump github.com/ethereum/ethash
This fixes the build.
Diffstat (limited to 'Godeps/_workspace/src/github.com/ethereum/ethash/libethash/util.c')
-rw-r--r--Godeps/_workspace/src/github.com/ethereum/ethash/libethash/util.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/Godeps/_workspace/src/github.com/ethereum/ethash/libethash/util.c b/Godeps/_workspace/src/github.com/ethereum/ethash/libethash/util.c
deleted file mode 100644
index fbf268b7d..000000000
--- a/Godeps/_workspace/src/github.com/ethereum/ethash/libethash/util.c
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- This file is part of cpp-ethereum.
-
- cpp-ethereum is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- cpp-ethereum is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
-*/
-/** @file util.c
- * @author Tim Hughes <tim@twistedfury.com>
- * @date 2015
- */
-#include <stdarg.h>
-#include <stdio.h>
-#include "util.h"
-
-#ifdef _MSC_VER
-
-// foward declare without all of Windows.h
-__declspec(dllimport) void __stdcall OutputDebugStringA(const char* lpOutputString);
-
-void debugf(const char *str, ...)
-{
- va_list args;
- va_start(args, str);
-
- char buf[1<<16];
- _vsnprintf_s(buf, sizeof(buf), sizeof(buf), str, args);
- buf[sizeof(buf)-1] = '\0';
- OutputDebugStringA(buf);
-}
-
-#endif