builtins-37.c

来自「用于进行gcc测试」· C语言 代码 · 共 30 行

C
30
字号
/* Copyright (C) 2004 Free Software Foundation.   Check tan, tanf and tanl built-in functions.   Written by Uros Bizjak, 7th April 2004.  *//* { dg-do compile } *//* { dg-options "-O2 -ffast-math" } */extern double tan(double);extern float tanf(float);extern long double tanl(long double);double test1(double x){  return tan(x);}float test1f(float x){  return tanf(x);}long double test1l(long double x){  return tanl(x);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?