build: Remove function declarations from M1.

* module/language/c99/compiler.mes (info->object): Remove function
  declarations.
This commit is contained in:
Jan Nieuwenhuizen 2018-05-27 07:12:33 +02:00
parent 893c020ef4
commit d717355b6c
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 1 additions and 1 deletions

View File

@ -2517,7 +2517,7 @@
(define* (info->object o)
(stderr "compiling: object\n")
`((functions . ,(filter (compose function:text cdr) (.functions o)))
`((functions . ,(filter (compose pair? function:text cdr) (.functions o)))
(globals . ,(.globals o))))
(define* (c99-input->elf #:key (defines '()) (includes '()))