This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Error in libguile/scmsigs.c ??


In the guile-core-19981014 snapshot, I noticed a piece of suspicious
code:

line 110:
static SIGRETTYPE (*orig_handlers)(int)[NSIG};

Surely this should be

static SIGRETTYPE (*orig_handlers[NSIG])(int);