* lisp/ob-C.el (org-babel-C-expand-C): When expanding include directives, wrap filenames in quotes if they do not begin with "<". TINYCHANGE
@@ -232,7 +232,10 @@ its header arguments."
(list
;; includes
(mapconcat
- (lambda (inc) (format "#include %s" inc))
+ (lambda (inc)
+ (if (string-prefix-p "<" inc)
+ (format "#include %s" inc)
+ (format "#include \"%s\"" inc)))
includes "\n")
;; defines