add appropriate meta_predicate/1 declarations

This commit is contained in:
Markus Triska
2021-02-18 20:12:15 +01:00
parent d4d283480f
commit 5bec2c87cb
2 changed files with 5 additions and 0 deletions

View File

@@ -3,6 +3,8 @@
:- use_module(library(atts)).
:- use_module(library(dcgs)).
:- meta_predicate freeze(?, 0).
:- attribute frozen/1.
verify_attributes(Var, Other, Goals) :-

View File

@@ -7,6 +7,9 @@
:- use_module(library(iso_ext), [setup_call_cleanup/3, partial_string/3]).
:- use_module(library(lists), [member/2]).
:- meta_predicate phrase_from_file(2, ?).
:- meta_predicate phrase_from_file(2, ?, ?).
phrase_from_file(NT, File) :-
phrase_from_file(NT, File, []).