source: git/Singular/mod_raw.h @ 663eb45

fieker-DuValspielwiese
Last change on this file since 663eb45 was 416465, checked in by Olaf Bachmann <obachman@…>, 24 years ago
* bug-fixes from work with Thomas git-svn-id: file:///usr/local/Singular/svn/trunk@3826 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 698 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.3 1999-11-15 17:20:28 obachman 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#include "mod2.h"
17#if defined(HAVE_DYNAMIC_LOADING) || defined(HAVE_DYN_RL)
18
19void *       dynl_open(char *filename);
20void *       dynl_sym(void *handle, char *symbol);
21int          dynl_close (void *handle);
22const char * dynl_error();
23
24
25#endif /* HAVE_DYNAMIC_LOADING  || HAVE_DYN_RL */
26#endif /* MOD_RAW_H */
Note: See TracBrowser for help on using the repository browser.