`ox_pops'
---------

ox_pops(NUMBER[,NITEM)
     :: Removes data form the stack of a process whose identifier is
     NUMBER.

RETURN
     0

NUMBER
     integer(process identifier)

NITEM
     non-negative integer

   * Removes data form the stack of a process whose identifier is
     NUMBER.  If NITEM is specified, NITEM items are removed.  If NITEM
     is not specified, 1 item is removed.

     [69] for(I=1;I<=10;I++)ox_push_cmo(0,I);
     [70] ox_pops(0,4);
     0
     [71] ox_pop_cmo(0);
     6

References
     *Note `ox_pop_cmo ox_pop_local': ox_pop_cmo ox_pop_local

