summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-05-31 14:04:53 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-05-31 14:04:53 +0000
commitae796982a086e0e348f6e4671798bf9b3b39f342 (patch)
tree18a4591f642ca12b2c804b7ed3664f5af280612d /include
parent4c99c156b7554f2941704dc0bbac05b6a24868e4 (diff)
If DT_PROCNUM is not defined, assume it's 0
Diffstat (limited to 'include')
-rw-r--r--include/link.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/link.h b/include/link.h
index fad8bb51d2c..6784f1063f1 100644
--- a/include/link.h
+++ b/include/link.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: link.h,v 1.5 1999/12/09 18:10:23 espie Exp $ */
+/* $OpenBSD: link.h,v 1.6 2001/05/31 14:04:52 art Exp $ */
/* $NetBSD: link.h,v 1.10 1996/01/09 00:00:11 pk Exp $ */
/*
@@ -42,6 +42,11 @@
#ifndef _LINK_H_
#define _LINK_H_
+/* XXXART - ? */
+#ifndef DT_PROCNUM
+#define DT_PROCNUM 0
+#endif
+
/*
* A `Shared Object Descriptor' describes a shared object that is needed
* to complete the link edit process of the object containing it.