Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > d1f06a5336fd6bf4a381b72b8d2b5ce1 > files > 82

gprolog-1.2.16-3mdk.ppc.rpm

% hook file for CIAO Prolog

:- use_module(library(prolog_sys), [statistics/2]).

% Count is passed as first argument
get_count(Count) :-
	current_prolog_flag(argv, L),
	L = [ACount|_],
	atom_codes(ACount, LCodes),
	number_codes(Count, LCodes).

get_cpu_time(T) :-
	statistics(runtime, [T, _]).

% main/0 needed by ciaoc
main.

:- initialization(q).