URI:
       trand.c - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       trand.c (66B)
       ---
            1 #include        <lib9.h>
            2 
            3 int
            4 p9rand(void)
            5 {
            6         return lrand() & 0x7fff;
            7 }