/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Header: div.c,v 1.3 90/03/05
div bl
div byte ptr x
div byte ptr cs:[esi]
div si
div word ptr x
div word ptr ss:10H[eax+esi*2]
div edi
div dword ptr x
div dword ptr ss:-7ffffH[eax+esi*2]
.func div
#include
div_t div( int numer, int denom );
typedef struct {
int quot; /* quotient */
int rem; /* remainder */
} div_t;
.funcend
.*
.desc begin
The &f
/* div.c - div file for stdlib */
/* Copyright 1992-2001 Wind River Systems, Inc. */
/*
modification history
--------------------
01g,25sep01,gls fixed div_r to check for negative numerator (SPR #
/* div.c: bcmath library file. */
/*
Copyright (C) 1991, 1992, 1993, 1994, 1997 Free Software Foundation, Inc.
Copyright (C) 2000 Philip A. Nelson
This library is free software; you can r