summaryrefslogtreecommitdiff
path: root/libs/rocm-hipblas/fix-hipblas-has-attribute.awk
blob: 0d455c3d4addd60be7ef4ce57423bdf6de2ec1f0 (plain)
1
2
3
4
5
6
7
8
/#include <hipblas.h>/ || /#include "hipblas.h"/ {
    print "#ifdef __has_attribute"
    print "#undef __has_attribute"
    print "#endif"
    print
    next
}
{ print }