1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- If defined, the local environment variable "DISABLE_COMMANDLINE_WILDCARD_EXPANSION"

will disable expansion of wildcard patterns passed on the command line.
  Note that if the variable is not set then the global variable
  '__expand_wildcard_args' will provide the defaults for the switch that
  controls whether the wildcard expansion takes place. And after the
  environment variable has been checked, the '__expand_wildcard_args_check'
  function pointer can still be used to override the switch.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15141 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2006-09-22 07:54:25 +00:00
parent 3fe72eaa44
commit d6e18a9266
8 changed files with 27 additions and 12 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: math_atan2.c,v 1.8 2006-01-08 12:04:23 obarthel Exp $
* $Id: math_atan2.c,v 1.9 2006-09-22 07:54:24 obarthel Exp $
*
* :ts=4
*
@ -225,7 +225,7 @@ __atan2(double y,double x)
if( ((ix|((lx|-lx)>>31))>0x7ff00000) || ((iy|((ly|-ly)>>31))>0x7ff00000) ) /* x or y is NaN */
return x+y;
if((hx-0x3ff00000|lx)==0)
if(((hx-0x3ff00000)|lx)==0)
return atan(y); /* x=1.0 */
m = ((hy>>31)&1)|((hx>>30)&2); /* 2*sign(x)+sign(y) */