Function: ert-gcc-is-clang-p

ert-gcc-is-clang-p is a byte-compiled function defined in ert-x.el.gz.

Signature

(ert-gcc-is-clang-p)

Documentation

Return non-nil if the gcc command actually runs the Clang compiler.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert-x.el.gz
(defun ert-gcc-is-clang-p ()
  "Return non-nil if the `gcc' command actually runs the Clang compiler."
  (require 'ffap)
  (declare-function ffap--gcc-is-clang-p "ffap" ())
  (ffap--gcc-is-clang-p))