// Attention, la définition de __RPLC_MAIN n'est obligatoire que parce qu'on // ne compile pas les bibliothèques avec mkrplso puisque à ce moment, // l'environnement RPL/2 n'est pas encore installé. #define __RPLC_MAIN #include "src/rplexternals.h" #include "sets.h" libraryName(sets); declareSubroutine(onLoading) notice(stdout, "\nSets library V1R1 for RPL/2 (C) 2017 BERTRAND Joel\n"); notice(stdout, "Sets library loaded.\n\n"); endSubroutine declareSubroutine(onClosing) notice(stdout, "Sets library unloaded.\n\n"); endSubroutine exportExternalFunctions( complement, intersection, union); // vim: ts=4