Skip to content

Commit fd62111

Browse files
Merge pull request #7 from garrettwrong/add_missing_string_header
Adds missing string.h include
2 parents 78e9fee + bf0d24e commit fd62111

File tree

8 files changed

+8
-0
lines changed

8 files changed

+8
-0
lines changed

hpc/openacc/English/C/source_code/lab1/laplace2d.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#include <math.h>
2929
#include <stdlib.h>
30+
#include <string.h>
3031

3132
#define OFFSET(x, y, m) (((x)*(m)) + (y))
3233

hpc/openacc/English/C/source_code/lab1/solutions/laplace2d.kernels.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#include <math.h>
2929
#include <stdlib.h>
30+
#include <string.h>
3031

3132
#define OFFSET(x, y, m) (((x)*(m)) + (y))
3233

hpc/openacc/English/C/source_code/lab1/solutions/laplace2d.parallel.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#include <math.h>
2929
#include <stdlib.h>
30+
#include <string.h>
3031

3132
#define OFFSET(x, y, m) (((x)*(m)) + (y))
3233

hpc/openacc/English/C/source_code/lab2/laplace2d.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#include <math.h>
2929
#include <stdlib.h>
30+
#include <string.h>
3031

3132
#define OFFSET(x, y, m) (((x)*(m)) + (y))
3233

hpc/openacc/English/C/source_code/lab2/solutions/laplace2d.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#include <math.h>
2929
#include <stdlib.h>
30+
#include <string.h>
3031

3132
#define OFFSET(x, y, m) (((x)*(m)) + (y))
3233

hpc/openacc/English/C/source_code/lab3/laplace2d.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#include <math.h>
2929
#include <stdlib.h>
30+
#include <string.h>
3031

3132
#define OFFSET(x, y, m) (((x)*(m)) + (y))
3233

hpc/openacc/English/C/source_code/lab3/solutions/collapse/laplace2d.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#include <math.h>
2929
#include <stdlib.h>
30+
#include <string.h>
3031

3132
#define OFFSET(x, y, m) (((x)*(m)) + (y))
3233

hpc/openacc/English/C/source_code/lab3/solutions/tile/laplace2d.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#include <math.h>
2929
#include <stdlib.h>
30+
#include <string.h>
3031

3132
#define OFFSET(x, y, m) (((x)*(m)) + (y))
3233

0 commit comments

Comments
 (0)