#include "soft-fp.h" #include "double.h" int FCMPED(void *rd, void *rs2, void *rs1) { FP_DECL_D(A); FP_DECL_D(B); long ret; unsigned long *fsr = rd; __FP_UNPACK_D(A, rs1); __FP_UNPACK_D(B, rs2); FP_CMP_D(ret, B, A, 2); if (ret == -1) ret = 2; *fsr = (*fsr & ~0xc00) | (ret << 10); return 1; } inux-ax25.git' title='ralf/linux-ax25.git Git repository'/>
summaryrefslogtreecommitdiffstats
path: root/include/keys
Commit message (Expand)AuthorAgeFilesLines
* KEYS: Disperse linux/key_ui.hDavid Howells2008-11-141-0/+31
* KEYS: Fix the comment to match the file name in rxrpc-type.h.Robert P. J. Day2008-04-211-1/+1
* KEYS: Make request_key() and co fundamentally asynchronousDavid Howells2007-10-17