Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
xmalloc.c
Package: fetchmail-5.2.7.tar.gz [view]
Upload User: xxcykj
Upload Date: 2007-01-04
Package Size: 727k
Code Size: 1k
Category:
Email Client
Development Platform:
Unix_Linux
- /*
- * xmalloc.c -- allocate space or die
- *
- * Copyright 1998 by Eric S. Raymond.
- * For license terms, see the file COPYING in this directory.
- */
- #include "config.h"
- #include <stdio.h>
- #include <errno.h>
- #include <string.h>
- #if defined(STDC_HEADERS)
- #include <stdlib.h>
- #endif
- #include "fetchmail.h"
- #include "i18n.h"
- #if defined(HAVE_VOIDPOINTER)
- #define XMALLOCTYPE void
- #else
- #define XMALLOCTYPE char
- #endif
- XMALLOCTYPE *
- xmalloc (int n)
- {
- XMALLOCTYPE *p;
- p = (XMALLOCTYPE *) malloc(n);
- if (p == (XMALLOCTYPE *) 0)
- {
- report(stderr, _("malloc failedn"));
- exit(PS_UNDEFINED);
- }
- return(p);
- }
- XMALLOCTYPE *
- xrealloc (XMALLOCTYPE *p, int n)
- {
- if (p == 0)
- return xmalloc (n);
- p = (XMALLOCTYPE *) realloc(p, n);
- if (p == (XMALLOCTYPE *) 0)
- {
- report(stderr, _("realloc failedn"));
- exit(PS_UNDEFINED);
- }
- return p;
- }
- char *xstrdup(const char *s)
- {
- char *p;
- p = (char *) xmalloc(strlen(s)+1);
- strcpy(p,s);
- return p;
- }
- /* xmalloc.c ends here */