Skip to content

Commit

Permalink
Update example_csscal.c
Browse files Browse the repository at this point in the history
with gcc-14 this warning becomes a failure

 90s /tmp/autopkgtest.g0L4Ek/autopkgtest_tmp/example_csscal.c: In function ‘main’:
 90s /tmp/autopkgtest.g0L4Ek/autopkgtest_tmp/example_csscal.c:67:26: error: implicit declaration of function ‘abs’ [-Wimplicit-function-declaration]
 90s    67 |     int lenX = 1 + (N-1)*abs(incx);
 90s       |                          ^~~
 90s /tmp/autopkgtest.g0L4Ek/autopkgtest_tmp/example_csscal.c:26:1: note: include ‘<stdlib.h>’ or provide a declaration of ‘abs’
 90s    25 | #include <clBLAS.h>
 90s   +++ |+#include <stdlib.h>
 90s    26 | 
 90s /tmp/autopkgtest.g0L4Ek/autopkgtest_tmp/example_csscal.c:89:5: warning: ‘clCreateCommandQueue’ is deprecated [-Wdeprecated-declarations]
 90s    89 |     queue = clCreateCommandQueue(ctx, device, 0, &err);
 90s       |     ^~~~~
  • Loading branch information
LocutusOfBorg authored Aug 2, 2024
1 parent cf91139 commit 05afa5d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/samples/example_csscal.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

#include <sys/types.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <math.h>

Expand Down

0 comments on commit 05afa5d

Please sign in to comment.