Commit acd1ba4c by Ulrich Drepper

Define __PMT if not already defined.

From-SVN: r21789
parent ef109057
/* Copyright (C) 1993, 1997 Free Software Foundation, Inc. /* Copyright (C) 1993, 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU IO Library. This file is part of the GNU IO Library.
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
...@@ -28,6 +28,14 @@ ...@@ -28,6 +28,14 @@
Merge into libio.h ? Merge into libio.h ?
#endif #endif
#ifndef __PMT
# ifdef __STDC__
# define __PMT(p) p
# else
# define __PMT(p) ()
# endif
#endif /*!__P*/
typedef void *(*_IO_alloc_type) __PMT ((_IO_size_t)); typedef void *(*_IO_alloc_type) __PMT ((_IO_size_t));
typedef void (*_IO_free_type) __PMT ((void*)); typedef void (*_IO_free_type) __PMT ((void*));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment