[Python-checkins] python/dist/src/Include pyerrors.h,2.59,2.60

nascheme@users.sourceforge.net nascheme@users.sourceforge.net
Sun, 15 Sep 2002 07:09:24 -0700


Update of /cvsroot/python/python/dist/src/Include
In directory usw-pr-cvs1:/tmp/cvs-serv22368

Modified Files:
	pyerrors.h 
Log Message:
Use Py_GCC_ATTRIBUTE instead of __attribute__.  Compilers other than GCC
might use __attribute__ in other ways (e.g. CodeWarrior).


Index: pyerrors.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/pyerrors.h,v
retrieving revision 2.59
retrieving revision 2.60
diff -C2 -d -r2.59 -r2.60
*** pyerrors.h	2 Sep 2002 16:41:54 -0000	2.59
--- pyerrors.h	15 Sep 2002 14:09:21 -0000	2.60
***************
*** 84,88 ****
  PyAPI_FUNC(PyObject *) PyErr_SetFromErrnoWithFilename(PyObject *, char *);
  PyAPI_FUNC(PyObject *) PyErr_Format(PyObject *, const char *, ...)
! 			__attribute__((format(printf, 2, 3)));
  #ifdef MS_WINDOWS
  PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithFilename(int, const char *);
--- 84,88 ----
  PyAPI_FUNC(PyObject *) PyErr_SetFromErrnoWithFilename(PyObject *, char *);
  PyAPI_FUNC(PyObject *) PyErr_Format(PyObject *, const char *, ...)
! 			Py_GCC_ATTRIBUTE((format(printf, 2, 3)));
  #ifdef MS_WINDOWS
  PyAPI_FUNC(PyObject *) PyErr_SetFromWindowsErrWithFilename(int, const char *);
***************
*** 196,202 ****
  #include <stdarg.h>
  PyAPI_FUNC(int) PyOS_snprintf(char *str, size_t size, const char  *format, ...)
! 			__attribute__((format(printf, 3, 4)));
  PyAPI_FUNC(int) PyOS_vsnprintf(char *str, size_t size, const char  *format, va_list va)
! 			__attribute__((format(printf, 3, 0)));
  
  #ifdef __cplusplus
--- 196,202 ----
  #include <stdarg.h>
  PyAPI_FUNC(int) PyOS_snprintf(char *str, size_t size, const char  *format, ...)
! 			Py_GCC_ATTRIBUTE((format(printf, 3, 4)));
  PyAPI_FUNC(int) PyOS_vsnprintf(char *str, size_t size, const char  *format, va_list va)
! 			Py_GCC_ATTRIBUTE((format(printf, 3, 0)));
  
  #ifdef __cplusplus