aboutsummaryrefslogtreecommitdiffstats
path: root/tools/sg_write_buffer/include/sg_pr2serr.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/sg_write_buffer/include/sg_pr2serr.h')
-rw-r--r--tools/sg_write_buffer/include/sg_pr2serr.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/tools/sg_write_buffer/include/sg_pr2serr.h b/tools/sg_write_buffer/include/sg_pr2serr.h
deleted file mode 100644
index 4419087..0000000
--- a/tools/sg_write_buffer/include/sg_pr2serr.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef SG_PR2SERR_H
-#define SG_PR2SERR_H
-
-/*
- * Copyright (c) 2004-2018 Douglas Gilbert.
- * All rights reserved.
- * Use of this source code is governed by a BSD-style
- * license that can be found in the BSD_LICENSE file.
- */
-
-#include <stdio.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-
-#if defined(__GNUC__) || defined(__clang__)
-int pr2serr(const char * fmt, ...)
- __attribute__ ((format (printf, 1, 2)));
-#else
-int pr2serr(const char * fmt, ...);
-#endif
-
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif