Skip to content

Commit

Permalink
Chez Scheme: stick to C89 for the pb interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
mflatt committed Jan 31, 2022
1 parent d567391 commit 41a2a15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions racket/src/ChezScheme/c/pb.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ enum {
#endif

#ifndef RESTRICT_PTR
/* `restrict` is available in C99 and later */
# define RESTRICT_PTR restrict
/* `restrict` is available in C99 and later, but we stick to C89 for now: */
# define RESTRICT_PTR /* restrict */
#endif

/* ********************************************************************** */
Expand Down

0 comments on commit 41a2a15

Please sign in to comment.