Skip to content

Commit

Permalink
fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
Laplace-Demon authored and zapashcanon committed Jul 26, 2024
1 parent b336a09 commit 54d3bf9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions example/c/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,7 @@ int main(void) {
owi_assume(n <= MAX_SIZE);

primes(is_prime, n);
free(is_prime);
return 0;
}
```
Expand Down Expand Up @@ -412,6 +413,7 @@ int main(void) {
owi_assume(n <= MAX_SIZE);

primes(is_prime, n);
free(is_prime);
return 0;
}
```
Expand Down
1 change: 1 addition & 0 deletions example/c/primes.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ int main(void) {
owi_assume(n <= MAX_SIZE);

primes(is_prime, n);
free(is_prime);
return 0;
}
1 change: 1 addition & 0 deletions example/c/primes2.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@ int main(void) {
owi_assume(n <= MAX_SIZE);

primes(is_prime, n);
free(is_prime);
return 0;
}

0 comments on commit 54d3bf9

Please sign in to comment.