cc-can-link.sh 166 B

1234567891011
  1. #!/bin/sh
  2. # SPDX-License-Identifier: GPL-2.0
  3. cat << "END" | $@ -x c - -o /dev/null >/dev/null 2>&1
  4. #include <stdio.h>
  5. int main(void)
  6. {
  7. printf("");
  8. return 0;
  9. }
  10. END