Skip to content

Commit 60d4847

Browse files
committed
C model library: clang-format include guards
1 parent 2416b14 commit 60d4847

File tree

1 file changed

+48
-48
lines changed

1 file changed

+48
-48
lines changed

src/ansi-c/library/stdio.c

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -826,15 +826,15 @@ void perror(const char *s)
826826

827827
#if !defined(__USE_ISOC99) || !defined(__REDIRECT)
828828

829-
#ifndef __CPROVER_STDIO_H_INCLUDED
830-
#include <stdio.h>
831-
#define __CPROVER_STDIO_H_INCLUDED
832-
#endif
829+
# ifndef __CPROVER_STDIO_H_INCLUDED
830+
# include <stdio.h>
831+
# define __CPROVER_STDIO_H_INCLUDED
832+
# endif
833833

834-
#ifndef __CPROVER_STDARG_H_INCLUDED
835-
#include <stdarg.h>
836-
#define __CPROVER_STDARG_H_INCLUDED
837-
#endif
834+
# ifndef __CPROVER_STDARG_H_INCLUDED
835+
# include <stdarg.h>
836+
# define __CPROVER_STDARG_H_INCLUDED
837+
# endif
838838

839839
int fscanf(FILE *restrict stream, const char *restrict format, ...)
840840
{
@@ -874,15 +874,15 @@ __CPROVER_HIDE:;
874874

875875
#if !defined(__USE_ISOC99) || !defined(__REDIRECT)
876876

877-
#ifndef __CPROVER_STDIO_H_INCLUDED
878-
#include <stdio.h>
879-
#define __CPROVER_STDIO_H_INCLUDED
880-
#endif
877+
# ifndef __CPROVER_STDIO_H_INCLUDED
878+
# include <stdio.h>
879+
# define __CPROVER_STDIO_H_INCLUDED
880+
# endif
881881

882-
#ifndef __CPROVER_STDARG_H_INCLUDED
883-
#include <stdarg.h>
884-
#define __CPROVER_STDARG_H_INCLUDED
885-
#endif
882+
# ifndef __CPROVER_STDARG_H_INCLUDED
883+
# include <stdarg.h>
884+
# define __CPROVER_STDARG_H_INCLUDED
885+
# endif
886886

887887
int scanf(const char *restrict format, ...)
888888
{
@@ -922,15 +922,15 @@ __CPROVER_HIDE:;
922922

923923
#if !defined(__USE_ISOC99) || !defined(__REDIRECT)
924924

925-
#ifndef __CPROVER_STDIO_H_INCLUDED
926-
#include <stdio.h>
927-
#define __CPROVER_STDIO_H_INCLUDED
928-
#endif
925+
# ifndef __CPROVER_STDIO_H_INCLUDED
926+
# include <stdio.h>
927+
# define __CPROVER_STDIO_H_INCLUDED
928+
# endif
929929

930-
#ifndef __CPROVER_STDARG_H_INCLUDED
931-
#include <stdarg.h>
932-
#define __CPROVER_STDARG_H_INCLUDED
933-
#endif
930+
# ifndef __CPROVER_STDARG_H_INCLUDED
931+
# include <stdarg.h>
932+
# define __CPROVER_STDARG_H_INCLUDED
933+
# endif
934934

935935
int sscanf(const char *restrict s, const char *restrict format, ...)
936936
{
@@ -970,15 +970,15 @@ __CPROVER_HIDE:;
970970

971971
#if !defined(__USE_ISOC99) || !defined(__REDIRECT)
972972

973-
#ifndef __CPROVER_STDIO_H_INCLUDED
974-
#include <stdio.h>
975-
#define __CPROVER_STDIO_H_INCLUDED
976-
#endif
973+
# ifndef __CPROVER_STDIO_H_INCLUDED
974+
# include <stdio.h>
975+
# define __CPROVER_STDIO_H_INCLUDED
976+
# endif
977977

978-
#ifndef __CPROVER_STDARG_H_INCLUDED
979-
#include <stdarg.h>
980-
#define __CPROVER_STDARG_H_INCLUDED
981-
#endif
978+
# ifndef __CPROVER_STDARG_H_INCLUDED
979+
# include <stdarg.h>
980+
# define __CPROVER_STDARG_H_INCLUDED
981+
# endif
982982

983983
int __VERIFIER_nondet_int();
984984

@@ -1116,15 +1116,15 @@ int __stdio_common_vfscanf(
11161116

11171117
#if !defined(__USE_ISOC99) || !defined(__REDIRECT)
11181118

1119-
#ifndef __CPROVER_STDIO_H_INCLUDED
1120-
#include <stdio.h>
1121-
#define __CPROVER_STDIO_H_INCLUDED
1122-
#endif
1119+
# ifndef __CPROVER_STDIO_H_INCLUDED
1120+
# include <stdio.h>
1121+
# define __CPROVER_STDIO_H_INCLUDED
1122+
# endif
11231123

1124-
#ifndef __CPROVER_STDARG_H_INCLUDED
1125-
#include <stdarg.h>
1126-
#define __CPROVER_STDARG_H_INCLUDED
1127-
#endif
1124+
# ifndef __CPROVER_STDARG_H_INCLUDED
1125+
# include <stdarg.h>
1126+
# define __CPROVER_STDARG_H_INCLUDED
1127+
# endif
11281128

11291129
int vscanf(const char *restrict format, va_list arg)
11301130
{
@@ -1156,15 +1156,15 @@ __CPROVER_HIDE:;
11561156

11571157
#if !defined(__USE_ISOC99) || !defined(__REDIRECT)
11581158

1159-
#ifndef __CPROVER_STDIO_H_INCLUDED
1160-
#include <stdio.h>
1161-
#define __CPROVER_STDIO_H_INCLUDED
1162-
#endif
1159+
# ifndef __CPROVER_STDIO_H_INCLUDED
1160+
# include <stdio.h>
1161+
# define __CPROVER_STDIO_H_INCLUDED
1162+
# endif
11631163

1164-
#ifndef __CPROVER_STDARG_H_INCLUDED
1165-
#include <stdarg.h>
1166-
#define __CPROVER_STDARG_H_INCLUDED
1167-
#endif
1164+
# ifndef __CPROVER_STDARG_H_INCLUDED
1165+
# include <stdarg.h>
1166+
# define __CPROVER_STDARG_H_INCLUDED
1167+
# endif
11681168

11691169
int __VERIFIER_nondet_int();
11701170

0 commit comments

Comments
 (0)