====== RemNode ====== Removes a node from a list. ==== Synopsis ==== ''%%void RemNode( Node *n )%%'' ==== Description ==== This procedure removes the specified node from a list. **Note:** If the specified node structure is not in a list you may get an abort. ==== Arguments ==== * **n** A pointer to the node to remove. ==== Implementation ==== Folio call implemented in kernel folio V20. ==== Associated Files ==== * **list.h** ANSI C Prototype * **clib.lib** ARM Link Library ==== See Also ==== ''%%RemTail%%''(), [[:documentation:development:opera:pf25:ppgfldr:pgsfldr:spr:01spr003#xref18583|AddTail]](), [[:documentation:development:opera:pf25:ppgfldr:pgsfldr:spr:01spr088#xref26607|InsertNodeFromTail]](), [[:documentation:development:opera:pf25:ppgfldr:pgsfldr:spr:01spr110#xref15588|RemHead]]() ====== ====== ----