summaryrefslogtreecommitdiff
path: root/tools/win32build/cpuid/cpuid.h
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-02-25 15:15:35 -0700
committerCharles Harris <charlesr.harris@gmail.com>2017-02-25 15:15:35 -0700
commit2bf1920ce2861ed48dd1b3ebef7cace65fe5f92d (patch)
tree08aca2731b9606f8ed2fbc9377b7641e868243fb /tools/win32build/cpuid/cpuid.h
parent309e450230f85fcea447047bcb319def858b7b10 (diff)
downloadnumpy-2bf1920ce2861ed48dd1b3ebef7cace65fe5f92d.tar.gz
MAINT: Remove numpy-macosx-installer and win32build directories.
The scripts in those directories were used to build windows superpacks and mac dmg files. We now release wheels for both of those platforms. There is little overhead maintaining these scripts, but they are clutter and will eventually bit rot if not used for current systems. So remove them.
Diffstat (limited to 'tools/win32build/cpuid/cpuid.h')
-rw-r--r--tools/win32build/cpuid/cpuid.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/win32build/cpuid/cpuid.h b/tools/win32build/cpuid/cpuid.h
deleted file mode 100644
index dc6d2933c..000000000
--- a/tools/win32build/cpuid/cpuid.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef _GABOU_CPUID_H
-#define _GABOU_CPUID_H
-
-#include <stdlib.h>
-
-#define CPUID_VENDOR_STRING_LEN 12
-
-struct _cpu_caps {
- int has_cpuid;
- int has_mmx;
- int has_sse;
- int has_sse2;
- int has_sse3;
- char vendor[CPUID_VENDOR_STRING_LEN+1];
-};
-typedef struct _cpu_caps cpu_caps_t;
-
-int cpuid_get_caps(cpu_caps_t *cpuinfo);
-
-#endif