`ox_get'
--------

ox_get(NUMBER)
     :: Receives data form a process whose identifer is NUMBER.

RETURN

NUMBER
     integer(process identifier)

   * Receives data form a process whose identifer is NUMBER.

   * One may use this function with `ox_push_cmd'.

   * `ox_pop_cmo' and `ox_pop_local' is realized as combinations of
     `ox_push_cmd' and `ox_get'.

     [11] ox_push_cmo(0,123);
     0
     [12] ox_push_cmd(0,262); /* 262=OX_popCMO */
     0
     [13] ox_get(0);
     123

References
     *Note `ox_pop_cmo ox_pop_local': ox_pop_cmo ox_pop_local, *Note
     `ox_push_cmd ox_sync': ox_push_cmd ox_sync

