summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--stdlib/stream.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/stream.mli b/stdlib/stream.mli
index 0e353f7c3..fdd8d6f5d 100644
--- a/stdlib/stream.mli
+++ b/stdlib/stream.mli
@@ -64,7 +64,7 @@ val peek : 'a t -> 'a option;;
val junk : 'a t -> unit;;
(* Remove the first element of the stream, possibly unfreezing
it before. *)
-external count : 'a t -> int = "%field0";;
+val count : 'a t -> int;;
(* Return the current count of the stream elements, i.e. the number
of the stream elements discarded. *)