/* Type definitions for nondeterministic finite state machine for bison,
- Copyright 2001 Free Software Foundation, Inc.
+ Copyright (C) 2001, 2002 Free Software Foundation, Inc.
This file is part of Bison, the GNU Compiler Compiler.
#include "system.h"
+#include "gram.h"
#include "state.h"
/*---------------------------------.
errs_dup (errs *src)
{
errs *res = errs_new (src->nerrs);
- memcpy (res->errs, src->errs, src->nerrs);
+ memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
return res;
}