From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22951 invoked by alias); 5 Jun 2004 20:28:24 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 22943 invoked from network); 5 Jun 2004 20:28:23 -0000 Received: from unknown (HELO mta10.srv.hcvlny.cv.net) (167.206.5.85) by sourceware.org with SMTP; 5 Jun 2004 20:28:23 -0000 Received: from localhost (ool-182c652b.dyn.optonline.net [24.44.101.43]) by mta10.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0HYU00K4URIY76@mta10.srv.hcvlny.cv.net> for gcc-patches@gcc.gnu.org; Sat, 05 Jun 2004 16:28:10 -0400 (EDT) Received: from jlquinn by localhost with local (Exim 3.36 #1 (Debian)) id 1BWhnE-0004WN-00 for ; Sat, 05 Jun 2004 16:29:28 -0400 Date: Sat, 05 Jun 2004 20:57:00 -0000 From: Jerry Quinn Subject: [patch] Minor improvement to typeclass.h To: gcc-patches@gcc.gnu.org Message-id: Content-transfer-encoding: 7BIT X-SW-Source: 2004-06/txt/msg00272.txt.bz2 2004-06-05 Jerry Quinn * typeclass.h: Add license and include guard. --- typeclass.h.~1.3.~ 1998-12-16 15:58:40.000000000 -0500 +++ typeclass.h 2004-05-24 21:31:31.000000000 -0400 @@ -1,3 +1,26 @@ +/* Type class enum + Copyright (C) 2004 Free Software Foundation, Inc. + +This file is part of GCC. + +GCC is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +GCC is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with GCC; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. */ + +#ifndef GCC_TYPECLASS_H +#define GCC_TYPECLASS_H + /* Values returned by __builtin_classify_type. */ enum type_class @@ -12,3 +35,5 @@ array_type_class, string_type_class, set_type_class, file_type_class, lang_type_class }; + +#endif /* GCC_TYPECLASS_H */