summaryrefslogtreecommitdiff
path: root/kernel/compatibility.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-08-23 15:14:58 +0200
committerClifford Wolf <clifford@clifford.at>2014-08-23 15:14:58 +0200
commit58367cd87a5d2bac1de81512f60939c080b3b9ef (patch)
tree88b50935d882964171602fcd3974489fadaa0070 /kernel/compatibility.h
parent19cff41eb4261b20374058f16807a229af46f304 (diff)
Removed compatbility.{h,cc}: Not using open_memstream/fmemopen anymore
Diffstat (limited to 'kernel/compatibility.h')
-rw-r--r--kernel/compatibility.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/kernel/compatibility.h b/kernel/compatibility.h
deleted file mode 100644
index c7603c8a..00000000
--- a/kernel/compatibility.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * yosys -- Yosys Open SYnthesis Suite
- *
- * Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
- *
- * Permission to use, copy, modify, and/or distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- *
- */
-
-#ifndef COMPATIBILITY_H
-#define COMPATIBILITY_H
-
-#include <stdio.h>
-#include <stdlib.h>
-
-#if !(_XOPEN_SOURCE >= 700 || _POSIX_C_SOURCE >= 200809L)
-
-#define open_memstream compat_open_memstream
-#define fmemopen compat_fmemopen
-
-FILE * compat_open_memstream (char ** bufp, size_t * sizep);
-FILE * compat_fmemopen (void * buf, size_t size, const char * mode);
-
-#endif /* !(_XOPEN_SOURCE >= 700 || _POSIX_C_SOURCE >= 200809L) */
-
-#endif /* COMPATIBILITY_H */
-