Home
       imaxdiv.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       imaxdiv.c (129B)
       ---
            1 #include <inttypes.h>
            2 
            3 #undef imaxdiv
            4 
            5 imaxdiv_t
            6 imaxdiv(intmax_t num, intmax_t den)
            7 {
            8         return (imaxdiv_t) {num/den, num%den};
            9 }