svn commit: r341233 - head/usr.bin/trim

John Baldwin jhb at FreeBSD.org
Thu Nov 29 18:10:53 UTC 2018


On 11/29/18 6:49 AM, Eugene Grosbein wrote:
> Author: eugen
> Date: Thu Nov 29 14:49:33 2018
> New Revision: 341233
> URL: https://svnweb.freebsd.org/changeset/base/341233
> 
> Log:
>   trim(1): unbreak build after r341232 for platforms using gcc and not clang
>   
>   MFC after:	1 month
> 
> Modified:
>   head/usr.bin/trim/trim.c
> 
> Modified: head/usr.bin/trim/trim.c
> ==============================================================================
> --- head/usr.bin/trim/trim.c	Thu Nov 29 14:21:26 2018	(r341232)
> +++ head/usr.bin/trim/trim.c	Thu Nov 29 14:49:33 2018	(r341233)
> @@ -42,8 +42,10 @@
>  #include <sysexits.h>
>  #include <unistd.h>
>  
> +#ifndef lint
>  static const char rcsid[] =
>      "$FreeBSD$";
> +#endif /* not lint */

This is spelled __FBSDID("$FreeBSD$"); in FreeBSD sources.

-- 
John Baldwin

                                                                            


More information about the svn-src-all mailing list