mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 16:34:07 +00:00
11 lines
101 B
C
11 lines
101 B
C
/* divide assign routine for long data is not linked */
|
|
|
|
main()
|
|
{
|
|
long a, b;
|
|
|
|
a=12;
|
|
b=3;
|
|
a/=b;
|
|
}
|