Module Name: src Committed By: pooka Date: Wed Oct 30 12:55:53 UTC 2013
Modified Files: src/lib/librumpuser: rumpuser_dl.c Log Message: need to include stdint.h before rump/rumpuser.h To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/lib/librumpuser/rumpuser_dl.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/librumpuser/rumpuser_dl.c diff -u src/lib/librumpuser/rumpuser_dl.c:1.23 src/lib/librumpuser/rumpuser_dl.c:1.24 --- src/lib/librumpuser/rumpuser_dl.c:1.23 Wed Oct 30 12:30:32 2013 +++ src/lib/librumpuser/rumpuser_dl.c Wed Oct 30 12:55:53 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: rumpuser_dl.c,v 1.23 2013/10/30 12:30:32 pooka Exp $ */ +/* $NetBSD: rumpuser_dl.c,v 1.24 2013/10/30 12:55:53 pooka Exp $ */ /* * Copyright (c) 2009 Antti Kantee. All Rights Reserved. @@ -40,7 +40,7 @@ #include "rumpuser_port.h" #if !defined(lint) -__RCSID("$NetBSD: rumpuser_dl.c,v 1.23 2013/10/30 12:30:32 pooka Exp $"); +__RCSID("$NetBSD: rumpuser_dl.c,v 1.24 2013/10/30 12:55:53 pooka Exp $"); #endif /* !lint */ #include <sys/types.h> @@ -50,6 +50,7 @@ __RCSID("$NetBSD: rumpuser_dl.c,v 1.23 2 #include <dlfcn.h> #include <errno.h> #include <fcntl.h> +#include <stdint,h> #include <stdio.h> #include <stdlib.h> #include <string.h>