Skip to content

Commit

Permalink
Merge pull request #7 from garrettwrong/add_missing_string_header
Browse files Browse the repository at this point in the history
Adds missing string.h include
  • Loading branch information
bharatk-parallel authored Feb 5, 2021
2 parents 78e9fee + bf0d24e commit fd62111
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions hpc/openacc/English/C/source_code/lab1/laplace2d.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#include <math.h>
#include <stdlib.h>
#include <string.h>

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#include <math.h>
#include <stdlib.h>
#include <string.h>

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#include <math.h>
#include <stdlib.h>
#include <string.h>

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

Expand Down
1 change: 1 addition & 0 deletions hpc/openacc/English/C/source_code/lab2/laplace2d.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#include <math.h>
#include <stdlib.h>
#include <string.h>

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#include <math.h>
#include <stdlib.h>
#include <string.h>

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

Expand Down
1 change: 1 addition & 0 deletions hpc/openacc/English/C/source_code/lab3/laplace2d.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#include <math.h>
#include <stdlib.h>
#include <string.h>

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#include <math.h>
#include <stdlib.h>
#include <string.h>

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#include <math.h>
#include <stdlib.h>
#include <string.h>

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

Expand Down

0 comments on commit fd62111

Please sign in to comment.