From e75c33e283deeef58fec03fed91df372b176dfcb Mon Sep 17 00:00:00 2001 From: Anton Staaf Date: Mon, 5 Jan 2015 10:49:58 -0800 Subject: [PATCH] OutStream: Remove unused prototypes These prototypes are for functions that didn't make the final cut and should have been removed before this header was committed. Signed-off-by: Anton Staaf BRANCH=None BUG=None TEST=make buildall -j Change-Id: I46726d20c25898681890caa95ad71500272fb7f6 Reviewed-on: https://chromium-review.googlesource.com/238753 Tested-by: Anton Staaf Reviewed-by: Randall Spangler Commit-Queue: Anton Staaf Trybot-Ready: Anton Staaf --- include/out_stream.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/out_stream.h b/include/out_stream.h index 51f8d78c86..6deefd69cf 100644 --- a/include/out_stream.h +++ b/include/out_stream.h @@ -72,9 +72,6 @@ size_t out_stream_write(struct out_stream const *stream, uint8_t const *buffer, size_t count); void out_stream_flush(struct out_stream const *stream); -int out_stream_pause(struct out_stream const *stream); -int out_stream_resume(struct out_stream const *stream); -int out_stream_is_paused(struct out_stream const *stream); void out_stream_ready(struct out_stream const *stream); #endif /* INCLUDE_OUT_STREAM_H */