1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-14 07:20:35 -08:00

Change enums away from 0

Copied from Perforce
 Change: 21581
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Pekka Pirinen 2000-11-03 20:51:19 +00:00
parent 9f9c4daa5b
commit bf8dbaaaf3

View file

@ -1,7 +1,7 @@
/* impl.c.eventrep: Allocation replayer routines
* Copyright (C) 2000 Harlequin Limited. All rights reserved.
*
* $HopeName: MMsrc!eventrep.c(MMdevel_alloc_replay.1) $
* $HopeName: MMsrc!eventrep.c(trunk.2) $
*/
#include "config.h"
@ -54,7 +54,7 @@ static Table apTable; /* dictionary of apReps */
/* poolSupport -- describes pool support for explicit deallocation */
enum {supportTruncate, supportFree, supportNothing};
enum {supportTruncate = 1, supportFree, supportNothing};
typedef int poolSupport;