summaryrefslogtreecommitdiff
path: root/defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/defines.h b/defines.h
index ac2d96691..e4e413638 100644
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
1#ifndef _DEFINES_H 1#ifndef _DEFINES_H
2#define _DEFINES_H 2#define _DEFINES_H
3 3
4/* $Id: defines.h,v 1.81 2002/03/08 03:11:08 mouring Exp $ */ 4/* $Id: defines.h,v 1.82 2002/03/22 18:19:54 stevesk Exp $ */
5 5
6/* Necessary headers */ 6/* Necessary headers */
7 7
@@ -490,6 +490,12 @@ struct winsize {
490# define OPENSSL_free(x) Free(x) 490# define OPENSSL_free(x) Free(x)
491#endif 491#endif
492 492
493#if defined(HAVE___func__)
494# define __FUNCTION__ __func__
495#elif !defined(HAVE___FUNCTION__)
496# define __FUNCTION__ ""
497#endif
498
493/* 499/*
494 * Define this to use pipes instead of socketpairs for communicating with the 500 * Define this to use pipes instead of socketpairs for communicating with the
495 * client program. Socketpairs do not seem to work on all systems. 501 * client program. Socketpairs do not seem to work on all systems.