diff options
author | David Schultz <das@FreeBSD.org> | 2007-12-15 08:38:44 +0000 |
---|---|---|
committer | David Schultz <das@FreeBSD.org> | 2007-12-15 08:38:44 +0000 |
commit | aaf70b231459920935d6fe1fa2e98b21770241e4 (patch) | |
tree | 063bec4e9b1cd1d8633476c7fa825801bb31d3f7 /include/complex.h | |
parent | 3eb5f519a5d352ca27017e309bc6e208b1a82c8e (diff) |
Implement and document csqrt(3) and csqrtf(3).
Notes
Notes:
svn path=/head/; revision=174617
Diffstat (limited to 'include/complex.h')
-rw-r--r-- | include/complex.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/complex.h b/include/complex.h index 5627f61f2653..24251f20f7ab 100644 --- a/include/complex.h +++ b/include/complex.h @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2001 The FreeBSD Project. + * Copyright (c) 2001-2007 The FreeBSD Project. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -57,6 +57,8 @@ long double complex double creal(double complex); float crealf(float complex); long double creall(long double complex); +double complex csqrt(double complex); +float complex csqrtf(float complex); __END_DECLS |