source: git/dyn_modules/kernel/kernel.mod @ 6ce030f

spielwiese
Last change on this file since 6ce030f was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 447 bytes
Line 
1/*
2 *
3 *  Test mod fuer modgen
4 */
5module="kernel";
6version="$Id$";
7info="
8LIBRARY: kernel.lib  PROCEDURES OF GENERAL TYPE WRITTEN IN C
9
10  proclist();    Lists all procedures.
11";
12
13cxxsource = proclist.cc
14cxxsource = misc.cc
15/*cxxsource = sscanf.cc*/
16
17proc proclist {
18 function=piShowProcList;
19};
20
21proc ideal toid(ideal) {
22function=toid;
23}
24
25/*
26proc string nn(string) {
27  function=iiKernelMiscNN;
28};
29*/
30
31/*proc sscanf(string, string) = IOsscanf; */
Note: See TracBrowser for help on using the repository browser.