diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-07-06 05:48:31 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-07-06 05:48:31 +0000 |
commit | 8ecac94bb21570ee45245f440171b5ffb4efe68c (patch) | |
tree | f121b3c7378fbe82722c05f610fcd61edbe6197f /src/include/utils/inet.h | |
parent | 40f64064ff56c3118d156ba83df72b1779415a8a (diff) | |
download | postgresql-8ecac94bb21570ee45245f440171b5ffb4efe68c.tar.gz postgresql-8ecac94bb21570ee45245f440171b5ffb4efe68c.zip |
Functions on 'text' type updated to new fmgr style. 'text' is
now TOAST-able.
Diffstat (limited to 'src/include/utils/inet.h')
-rw-r--r-- | src/include/utils/inet.h | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/src/include/utils/inet.h b/src/include/utils/inet.h index 4cc13f06a8e..075d66aa6b3 100644 --- a/src/include/utils/inet.h +++ b/src/include/utils/inet.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * builtins.h - * Declarations for operations on built-in types. + * inet.h + * Declarations for operations on INET datatypes. * * * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: inet.h,v 1.6 2000/01/26 05:58:38 momjian Exp $ + * $Id: inet.h,v 1.7 2000/07/06 05:48:31 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -45,15 +45,4 @@ typedef struct macaddr unsigned char f; } macaddr; - -typedef struct manufacturer -{ - unsigned char a; - unsigned char b; - unsigned char c; - char *name; -} manufacturer; - -extern manufacturer manufacturers[]; - #endif /* MAC_H */ |