diff options
author | jkh <jkh@FreeBSD.org> | 1994-02-13 20:43:13 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-02-13 20:43:13 +0000 |
commit | 477937c24f744be139c6f05fca05ef839596d8d0 (patch) | |
tree | 6947a3f67de9a2d5a7e3753ee49932ec50fa8e59 /usr.bin/ldd | |
parent | 872e15cb55f29ca2d280bb299f35887b21506b1a (diff) | |
download | FreeBSD-src-477937c24f744be139c6f05fca05ef839596d8d0.zip FreeBSD-src-477937c24f744be139c6f05fca05ef839596d8d0.tar.gz |
This is Paul K's latest set of ld changes. A commit was necessary at this
late stage due to the fact that link.h was copyright Sun Microsystems.
This version of ld sync's us up with NetBSD's ld and supports compatablily
with NetBSD's -[zZ] flags (which we had reversed). Compiling with this
new ld will give you RRS warnings for libraries which do not contain .type
infomation - these wsarnings are harmless and will go away as soon as you
recompile your libraries (cd /usr/src; make libraries).
Diffstat (limited to 'usr.bin/ldd')
-rw-r--r-- | usr.bin/ldd/ldd.1 | 2 | ||||
-rw-r--r-- | usr.bin/ldd/ldd.c | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/ldd/ldd.1 b/usr.bin/ldd/ldd.1 index 0c3b5e4..f5a6aba 100644 --- a/usr.bin/ldd/ldd.1 +++ b/usr.bin/ldd/ldd.1 @@ -1,6 +1,6 @@ .Dd October 22, 1993 .Dt LDD 1 -.Os FreeBSD +.Os FreeBSD 1.1 .Sh NAME .Nm ldd .Nd list dynamic object dependencies diff --git a/usr.bin/ldd/ldd.c b/usr.bin/ldd/ldd.c index 65b0bc1..7fba989 100644 --- a/usr.bin/ldd/ldd.c +++ b/usr.bin/ldd/ldd.c @@ -14,7 +14,7 @@ * must display the following acknowledgement: * This product includes software developed by Paul Kranenburg. * 4. The name of the author may not be used to endorse or promote products - * derived from this software withough specific prior written permission + * derived from this software without specific prior written permission * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES @@ -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: ldd.c,v 1.3 1993/10/31 14:54:29 pk Exp $ + * $Id: ldd.c,v 1.2 1993/11/09 04:19:27 paul Exp $ */ #include <sys/param.h> @@ -107,6 +107,7 @@ char *argv[]; (void)close(fd); printf("%s:\n", *argv); + fflush(stdout); switch (fork()) { case -1: |