Home
last modified time | relevance | path

Searched refs:USIZE (Results 1 – 1 of 1) sorted by relevance

/freebsd/bin/ed/
H A Dundo.c32 #define USIZE 100 /* undo stack size */ macro
45 (ustack = (undo_t *) malloc((usize = USIZE) * sizeof(undo_t))) == NULL) { in push_undo_stack()
53 (t = (undo_t *) realloc(ustack, (usize += USIZE) * sizeof(undo_t))) != NULL) { in push_undo_stack()