diff options
author | Eivind Eklund <eivind@FreeBSD.org> | 1997-05-07 02:27:18 +0000 |
---|---|---|
committer | Eivind Eklund <eivind@FreeBSD.org> | 1997-05-07 02:27:18 +0000 |
commit | 48ea0bec18feafd62cc2f7df74234da2e504e86a (patch) | |
tree | 06c901b37e9f1535a72cd438fa75be9f98adaa7a /include/link.h | |
parent | 89ee8ac3d677a0ff0d0c85ee38f1374fa4fe7c5e (diff) | |
download | src-48ea0bec18feafd62cc2f7df74234da2e504e86a.tar.gz src-48ea0bec18feafd62cc2f7df74234da2e504e86a.zip |
Make a lot of include-files self-contained. I excluded the patches changing
int's to gid_t and uid_t - should I commit these, too?
Closes PR misc/2625.
Submitted by: Julian Assange <proff@iq.org>
Notes
Notes:
svn path=/head/; revision=25520
Diffstat (limited to 'include/link.h')
-rw-r--r-- | include/link.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/link.h b/include/link.h index 74725040a50c..e6aa65ce793c 100644 --- a/include/link.h +++ b/include/link.h @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $Id: link.h,v 1.11 1997/02/23 09:17:13 peter Exp $ */ /* @@ -41,6 +41,9 @@ #ifndef _LINK_H_ #define _LINK_H_ +#include <sys/types.h> +#include <nlist.h> + /* * A `Shared Object Descriptor' describes a shared object that is needed * to complete the link edit process of the object containing it. |