File: dynload.h

package info (click to toggle)
gerbv 2.4.0-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 8,920 kB
  • ctags: 1,968
  • sloc: ansic: 21,729; sh: 10,232; lisp: 896; makefile: 381; perl: 42
file content (17 lines) | stat: -rw-r--r-- 383 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* dynload.h */
/* Original Copyright (c) 1999 Alexander Shendi     */
/* Modifications for NT and dl_* interface: D. Souflis */

/** \file dynload.h
    \brief Header info for the dynamic loader functions for TinyScheme
    \ingroup gerbv
*/

#ifndef DYNLOAD_H
#define DYNLOAD_H

#include "scheme-private.h"

SCHEME_EXPORT pointer scm_load_ext(scheme *sc, pointer arglist);

#endif