summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-05-25 07:31:39 -0500
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-05-26 08:43:38 +0000
commit075abff3feb0c6965ba49108266b27bec1bd4ae6 (patch)
tree97b895b97d6f1542d5aae6f017afbddfc0b5a728 /handy.h
parent456b8aff3db21e52f55abc0d0ef5a79a68dfd59c (diff)
downloadperl-075abff3feb0c6965ba49108266b27bec1bd4ae6.tar.gz
Updated lint infrastructure
Message-ID: <20050525173139.GB1701@petdance.com> p4raw-id: //depot/perl@24580
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/handy.h b/handy.h
index 2aa02b7fc2..067999a1ee 100644
--- a/handy.h
+++ b/handy.h
@@ -519,11 +519,7 @@ Converts the specified character to lowercase.
/* Line numbers are unsigned, 32 bits. */
typedef U32 line_t;
-#ifdef lint
-#define NOLINE ((line_t)0)
-#else
#define NOLINE ((line_t) 4294967295UL)
-#endif
/*
@@ -598,8 +594,6 @@ hopefully catches attempts to access uninitialized memory.
=cut */
-#ifndef lint
-
#define NEWSV(x,len) newSV(len)
#ifdef PERL_MALLOC_WRAP
@@ -646,23 +640,6 @@ hopefully catches attempts to access uninitialized memory.
#define Poison(d,n,t) (MEM_WRAP_CHECK_(n,t) (void)memset((char*)(d), 0xAB, (n) * sizeof(t)))
-#else /* lint */
-
-#define New(x,v,n,s) (v = Null(s *))
-#define Newc(x,v,n,s,c) (v = Null(s *))
-#define Newz(x,v,n,s) (v = Null(s *))
-#define Renew(v,n,s) (v = Null(s *))
-#define Move(s,d,n,t)
-#define Copy(s,d,n,t)
-#define Zero(d,n,t)
-#define MoveD(s,d,n,t) d
-#define CopyD(s,d,n,t) d
-#define ZeroD(d,n,t) d
-#define Poison(d,n,t)
-#define Safefree(d) (d) = (d)
-
-#endif /* lint */
-
#ifdef USE_STRUCT_COPY
#define StructCopy(s,d,t) (*((t*)(d)) = *((t*)(s)))
#else