summaryrefslogtreecommitdiffstats
path: root/fastos
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-06-16 09:44:37 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-06-16 10:51:43 +0000
commit4f63c9865dffee64bb9df0215c3550e915c00c75 (patch)
tree3921cc136eea08584c805dd863ff0d120e636ddb /fastos
parent66792ca61f9043acf53ca206dcc7bd701194492a (diff)
Remove more unused defines
Diffstat (limited to 'fastos')
-rw-r--r--fastos/src/vespa/fastos/autoconf.h15
-rw-r--r--fastos/src/vespa/fastos/types.h6
-rw-r--r--fastos/src/vespa/fastos/unix_process.cpp1
3 files changed, 2 insertions, 20 deletions
diff --git a/fastos/src/vespa/fastos/autoconf.h b/fastos/src/vespa/fastos/autoconf.h
deleted file mode 100644
index d4a70654f71..00000000000
--- a/fastos/src/vespa/fastos/autoconf.h
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-/* Last autogenerated file */
-
-#pragma once
-
-#define FASTOS_64BIT_LONG 1
-#define FASTOS_HAVE_INT64_T 1
-#define FASTOS_HAVE_UINT64_T 1
-#define FASTOS_HAVE_INT32_T 1
-#define FASTOS_HAVE_UINT32_T 1
-#define FASTOS_HAVE_INT16_T 1
-#define FASTOS_HAVE_UINT16_T 1
-#define FASTOS_HAVE_INT8_T 1
-#define FASTOS_HAVE_UINT8_T 1
-#define FASTOS_HAVE_INT64_T 1
diff --git a/fastos/src/vespa/fastos/types.h b/fastos/src/vespa/fastos/types.h
index fddf79437d4..8cad022e768 100644
--- a/fastos/src/vespa/fastos/types.h
+++ b/fastos/src/vespa/fastos/types.h
@@ -10,8 +10,6 @@
#pragma once
-#include <vespa/fastos/autoconf.h>
-
/**
* @def __STDC_LIMIT_MACROS
* According to C99, C++ implementations will only define UINT64_MAX
@@ -118,6 +116,6 @@
#define PRId64 "ld"
#endif
-#else /* ! FASTOS_64BIT_LONG */
+#else
#error "Only 64 environments are supported."
-#endif /* FASTOS_64BIT_LONG */
+#endif
diff --git a/fastos/src/vespa/fastos/unix_process.cpp b/fastos/src/vespa/fastos/unix_process.cpp
index 96074cd07b0..394b41eb986 100644
--- a/fastos/src/vespa/fastos/unix_process.cpp
+++ b/fastos/src/vespa/fastos/unix_process.cpp
@@ -1,5 +1,4 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <vespa/fastos/autoconf.h>
#include <vespa/fastos/process.h>
#include <vespa/fastos/app.h>
#include <vespa/fastos/unix_ipc.h>