aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/main/vsnprintf.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove OpenVMS supportMatt Turner2012-11-161-165/+0
| | | | | | | | | | Not maintained since 2008. Doubtful that it's worked in quite a while. Also see commit 32ac8cb05 which removed VMS stuff from Makefile in 2009. Cc: Jouk Jansen <[email protected]> Reviewed-by: Brian Paul <[email protected]> Signed-off-by: Andreas Boll <[email protected]>
* Don't cast the return value of malloc/reallocMatt Turner2012-09-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | This patch has been generated by the following Coccinelle semantic patch: // Don't cast the return value of malloc/realloc. // // Casting the return value of malloc/realloc only stands to hide // errors. @@ type T; expression E1, E2; @@ - (T) ( _mesa_align_calloc(E1, E2) | _mesa_align_malloc(E1, E2) | calloc(E1, E2) | malloc(E1) | realloc(E1, E2) )
* Committing in .Jouk Jansen2003-12-091-1/+3
| | | | | | | | | Small VMS issue : sys/param.h is not available on all systems and not needed anyway. Modified Files: Mesa-newtree/src/mesa/main/vsnprintf.c ----------------------------------------------------------------------
* Committing in .Jouk Jansen2002-09-051-0/+163
Adding vsnprintf support for OpenVMS (needed in src/imports.c) Modified Files: Mesa/src/Makefile.am Mesa/src/descrip.mms Added Files: Mesa/src/vsnprintf.c ----------------------------------------------------------------------