From owner-cvs-all@FreeBSD.ORG Sun Aug 8 20:05:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36C7E16A4CE; Sun, 8 Aug 2004 20:05:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19F1343D54; Sun, 8 Aug 2004 20:05:48 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78K5lUU023078; Sun, 8 Aug 2004 20:05:47 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78K5lDQ023077; Sun, 8 Aug 2004 20:05:47 GMT (envelope-from stefanf) Message-Id: <200408082005.i78K5lDQ023077@repoman.freebsd.org> From: Stefan Farfeleder Date: Sun, 8 Aug 2004 20:05:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include Makefile tgmath.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 20:05:48 -0000 stefanf 2004-08-08 20:05:47 UTC FreeBSD src repository Modified files: include Makefile Added files: include tgmath.h Log: Implement C99's standard header . It provides type-generic macros for the and functions that have float, double and long double implementations. Such type-generic macros expand to an actual function, depending on the types of the macro arguments, eg. if is included, the invocation cos(1.0f) calls the function cosf(). Revision Changes Path 1.219 +2 -1 src/include/Makefile 1.1 +166 -0 src/include/tgmath.h (new)