~ubuntu-branches/ubuntu/hardy/sigscheme/hardy-proposed

« back to all changes in this revision

Viewing changes to src/functable-srfi34.c

  • Committer: Bazaar Package Importer
  • Author(s): NIIBE Yutaka
  • Date: 2007-01-29 15:31:24 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070129153124-j5fcqyrwcfbczma7
Tags: 0.7.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 *             This file is auto-generated by build_func_table.rb
5
5
 *
6
6
 *  Copyright (C) 2005-2006 Kazuki Ohta <mover AT hct.zaq.ne.jp>
 
7
 *  Copyright (c) 2007 SigScheme Project <uim AT freedesktop.org>
7
8
 *
8
9
 *  All rights reserved.
9
10
 *
36
37
#include <stddef.h>
37
38
 
38
39
#include "sigscheme.h"
39
 
static const struct scm_func_registration_info scm_srfi34_func_info_table[] = {
 
40
 
 
41
 
 
42
static const struct scm_func_registration_info scm_functable_srfi34[] = {
40
43
    /* module-srfi34.c */
41
44
    { "with-exception-handler", (ScmFuncType)scm_p_srfi34_with_exception_handler, SCM_PROCEDURE_FIXED_2 },
42
45
    { "raise", (ScmFuncType)scm_p_srfi34_raise, SCM_PROCEDURE_FIXED_1 },
44
47
 
45
48
    { NULL, NULL, SCM_FUNCTYPE_INVALID }
46
49
};
47