Skip to content

Commit e6753bd

Browse files
committed
Fix typo: __CPOVER_HIDE -> __CPROVER_HIDE
Note the missing "R".
1 parent c606c00 commit e6753bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ansi-c/library/stdio.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ void perror(const char *s)
790790

791791
inline int fscanf(FILE *restrict stream, const char *restrict format, ...)
792792
{
793-
__CPOVER_HIDE:;
793+
__CPROVER_HIDE:;
794794
va_list list;
795795
va_start(list, format);
796796
int result=vfscanf(stream, format, list);
@@ -812,7 +812,7 @@ inline int fscanf(FILE *restrict stream, const char *restrict format, ...)
812812

813813
inline int scanf(const char *restrict format, ...)
814814
{
815-
__CPOVER_HIDE:;
815+
__CPROVER_HIDE:;
816816
va_list list;
817817
va_start(list, format);
818818
int result=vfscanf(stdin, format, list);
@@ -834,7 +834,7 @@ inline int scanf(const char *restrict format, ...)
834834

835835
inline int sscanf(const char *restrict s, const char *restrict format, ...)
836836
{
837-
__CPOVER_HIDE:;
837+
__CPROVER_HIDE:;
838838
va_list list;
839839
va_start(list, format);
840840
int result=vsscanf(s, format, list);

0 commit comments

Comments
 (0)