Add hypot.3 from Regina Bast to CVS
authorAndreas Braukmann <andy@abra.de>
Wed, 19 May 1999 09:01:52 +0000 (09:01 +0000)
committerAndreas Braukmann <andy@abra.de>
Wed, 19 May 1999 09:01:52 +0000 (09:01 +0000)
CHANGES
man3/hypot.3 [new file with mode: 0644]

diff --git a/CHANGES b/CHANGES
index cc69929..81e2c3f 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,7 @@ Version 0.3
 
   * Added assert.3, translated by Toni Volkmer
   * Added cdrecord.1 translated by Eduard Bloch
+  * Added hypot.3 translated by Regine Bast
 
 
 Version 0.2
diff --git a/man3/hypot.3 b/man3/hypot.3
new file mode 100644 (file)
index 0000000..96f7f92
--- /dev/null
@@ -0,0 +1,53 @@
+.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
+.\"
+.\" Permission is granted to make and distribute verbatim copies of this
+.\" manual provided the copyright notice and this permission notice are
+.\" preserved on all copies.
+.\"
+.\" Permission is granted to copy and distribute modified versions of this
+.\" manual under the conditions for verbatim copying, provided that the
+.\" entire resulting derived work is distributed under the terms of a
+.\" permission notice identical to this one
+.\" 
+.\" Since the Linux kernel and libraries are constantly changing, this
+.\" manual page may be incorrect or out-of-date.  The author(s) assume no
+.\" responsibility for errors or omissions, or for damages resulting from
+.\" the use of the information contained herein.  The author(s) may not
+.\" have taken the same level of care in the production of this manual,
+.\" which is licensed free of charge, as they might when working
+.\" professionally.
+.\" 
+.\" Formatted or processed versions of this manual, if unaccompanied by
+.\" the source, must acknowledge the copyright and authors of this work.
+.\"
+.\" References consulted:
+.\"     Linux libc source code
+.\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
+.\"     386BSD man pages
+.\" Modified Sat Jul 24 19:14:54 1993 by Rik Faith (faith@cs.unc.edu)
+.\" Translated into German by Regine Bast (regine.bast@bigfoot.com)
+.\"
+.TH HYPOT 3 "19. Mai 1999" "" "Bibliotheksfunktionen"
+.SH BEZEICHNUNG
+hypot \- Euklidische Distanz Funktion 
+.SH "ÜBERSICHT"
+.nf
+.B #include <math.h>
+.sp
+.BI "double hypot(double " x ", double " y );
+.fi
+.SH BESCHREIBUNG
+Die
+.B hypot()
+Funktion liefert die Wurzel aus (x-Quadrat + y-Quadrat).
+Das ist die Länge der Hypothenuse eines rechtwinkligen Dreiecks mit den
+Seitenlängen
+.IR x
+und
+.IR y,
+oder die Entfernung des Punktes (x,y) vom Ursprung. 
+.SH "KONFORM ZU"
+SVID 3, BSD 4.3
+.SH "SIEHE AUCH"
+.BR sqrt (3).
+