Files
mercury/extras/dynamic_linking
Paul Bone fc4b3ff196 Remove .cvsignore files
Remove old .cvsignore files, moving their contents to .gitignore files.
There are now no .cvsignore files in the repository.

I've also sorted some .gitignore files and avoided repeating a pattern in a
subdirectory's .gitignore file when it is already mentioned in the parent
.gitignore file.
2017-04-04 12:05:56 +10:00
..
2016-04-26 14:03:04 +10:00

This directory contains the following files:

dl.m:
	A module containing support for dynamic linking
	(i.e. a binding to the C functions dlopen(), dlsym(), and dlclose()).

name_mangle.m:
	A module containing a representation for Mercury procedure
	specifiers and a function for mangling them into symbol names
	suitable for passing to dlsym().

dl_test.m:
hello.m:
dl_test.exp:
	A sample program (and test case) for the use of dynamic linking.