if exists("g:loaded_syntastic_util_autoload") finish endif let g:loaded_syntastic_util_autoload = 1 let s:save_cpo = &cpo set cpo&vim function! syntastic#util#DevNull() if has('win32') return 'NUL' endif return '/dev/null' endfunction let &cpo = s:save_cpo unlet s:save_cpo " vim: set et sts=4 sw=4: