]> andersk Git - splint.git/commitdiff
Fixed declarations of inptr_t and uintptr_t.
authorevans1629 <evans1629>
Sat, 25 Sep 2004 14:42:30 +0000 (14:42 +0000)
committerevans1629 <evans1629>
Sat, 25 Sep 2004 14:42:30 +0000 (14:42 +0000)
lib/standard.h

index 1ae8d373f0f59f1d41b306c59ee389cd890d460f..0d5888121dfea17aca915fa5782fd03f18c1884d 100644 (file)
@@ -1206,10 +1206,12 @@ typedef /*@unsignedintegraltype@*/ uint_fast16_t;
 typedef /*@unsignedintegraltype@*/ uint_fast32_t;
 typedef /*@unsignedintegraltype@*/ uint_fast64_t;
 
-typedef int *intptr_t
+/* Corrections to intptr_t and uintptr_t decparations provided by David Sanderson */
+
+typedef /*@signedintegraltype@*/ intptr_t
    /*@warn implementationoptional "ISO99 specifies as optional type, implementation need not provide."@*/ ;
 
-typedef unsigned int *uintptr_t
+typedef /*@unsignedintegraltype@*/ uintptr_t
    /*@warn implementationoptional "ISO99 specifies as optional type, implementation need not provide."@*/ ;
 
 typedef /*@signedintegraltype@*/ intmax_t;
This page took 0.051208 seconds and 5 git commands to generate.