1*3cc25752SFrank Piva // 2*3cc25752SFrank Piva // Copyright (c) 2020 The Khronos Group Inc. 3*3cc25752SFrank Piva // 4*3cc25752SFrank Piva // Licensed under the Apache License, Version 2.0 (the "License"); 5*3cc25752SFrank Piva // you may not use this file except in compliance with the License. 6*3cc25752SFrank Piva // You may obtain a copy of the License at 7*3cc25752SFrank Piva // 8*3cc25752SFrank Piva // http://www.apache.org/licenses/LICENSE-2.0 9*3cc25752SFrank Piva // 10*3cc25752SFrank Piva // Unless required by applicable law or agreed to in writing, software 11*3cc25752SFrank Piva // distributed under the License is distributed on an "AS IS" BASIS, 12*3cc25752SFrank Piva // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*3cc25752SFrank Piva // See the License for the specific language governing permissions and 14*3cc25752SFrank Piva // limitations under the License. 15*3cc25752SFrank Piva // 16*3cc25752SFrank Piva 17*3cc25752SFrank Piva #include <stdio.h> 18*3cc25752SFrank Piva 19*3cc25752SFrank Piva #include "CL/cl_version.h" 20*3cc25752SFrank Piva main(void)21*3cc25752SFrank Pivaint main( void ) 22*3cc25752SFrank Piva { 23*3cc25752SFrank Piva printf("cl_version.h standalone test PASSED.\n"); 24*3cc25752SFrank Piva return 0; 25*3cc25752SFrank Piva } 26