source: git/Singular/mod_raw.h @ 0224c8

spielwiese
Last change on this file since 0224c8 was ed6e65, checked in by Hans Schönemann <hannes@…>, 24 years ago
*hannes: mod2.h fomr .h files removed git-svn-id: file:///usr/local/Singular/svn/trunk@4109 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 680 bytes
Line 
1#ifndef MOD_RAW_H
2#define MOD_RAW_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/* $Id: mod_raw.h,v 1.4 2000-02-01 15:30:26 Singular Exp $ */
7/*
8 * ABSTRACT: machine depend code for dynamic modules
9 *
10 * Provides: dynl_open()
11 *           dynl_sym()
12 *           dynl_error()
13 *           dunl_close()
14*/
15
16#if defined(HAVE_DYNAMIC_LOADING) || defined(HAVE_DYN_RL)
17
18void *       dynl_open(char *filename);
19void *       dynl_sym(void *handle, char *symbol);
20int          dynl_close (void *handle);
21const char * dynl_error();
22
23
24#endif /* HAVE_DYNAMIC_LOADING  || HAVE_DYN_RL */
25#endif /* MOD_RAW_H */
Note: See TracBrowser for help on using the repository browser.