Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > d07d7ab417d79053e7e0155c99e1a1c8 > files > 2143

mlton-20100608-3.fc15.i686.rpm

#include "test_quot.h"
#include <stdio.h>

PRIVATE Int8 c_quot(Int8 x, Int8 y) {
  Int8 z = x / y;
  return z;
}

PUBLIC void call_sml_quot() {
  Int8 x = -1;
  Int8 y = 10;
  Int8 z = sml_quot(x, y);
  printf(" sml_z = %i\n", z);
}