summaryrefslogtreecommitdiff
path: root/win32/CODING
diff options
context:
space:
mode:
Diffstat (limited to 'win32/CODING')
-rw-r--r--win32/CODING20
1 files changed, 0 insertions, 20 deletions
diff --git a/win32/CODING b/win32/CODING
deleted file mode 100644
index 212a22b67d7fc..0000000000000
--- a/win32/CODING
+++ /dev/null
@@ -1,20 +0,0 @@
-/*$Header: /p/tcsh/cvsroot/tcsh/win32/CODING,v 1.3 2004/05/19 18:22:27 christos Exp $*/
-Read this if you plan to contribute changes to the source:
-
-Please do not use any heap allocation routine other than:
-
-1. heap_alloc()/heap_free(), if the memory will never be acessed in a child
-process (i.e, is not expected to be inherited). this is a macro defined
-in ntport.h
-
-2. xmalloc()/xfree(), if the memory is to be inherited by a child process.
-this is allocated from a seperate heap and is copied to the child during fork().
-
-Avoid using C-runtime functions that store static variables
-(like strtok, for example).
-
-It is preferrable to avoid any c-runtime function other than strlen,strcat
-etc.
-
-Thanks.
--amol