代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/239264/4604561
c malloc.c
/*
* Copyright (c) 2005-2007, Kohsuke Ohtani
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the followin
www.eeworm.com/read/239264/4604711
c malloc.c
/*
* Copyright (c) 2005, Kohsuke Ohtani
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following con
www.eeworm.com/read/234134/4660674
h malloc.h
/***
*malloc.h - declarations and definitions for memory allocation functions
*
* Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Contains the function de
www.eeworm.com/read/234134/4661996
h malloc.h
/***
*malloc.h - declarations and definitions for memory allocation functions
*
* Copyright (c) 1985-1990, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Contains the function declar
www.eeworm.com/read/233448/4692622
h malloc.h
/* DO NOT EDIT THIS FILE.
It has been auto-edited by fixincludes from:
"fixinc/tests/inc/malloc.h"
This had to be done to correct non-standard usages in the
original, manufacturer sup
www.eeworm.com/read/232817/4696153
h malloc.h
#ifndef MALLOC_H
#define MALLOC_H
#include "sos_types.h"
#include "pid.h"
#include "malloc_conf.h"
#include "hardware_proc.h"
#include
#include
/**
* @brief Init f
www.eeworm.com/read/231546/4714678
al malloc.al
# NOTE: Derived from ../../lib/POSIX.pm.
# Changes made here will be lost when autosplit again.
# See AutoSplit.pm.
package POSIX;
#line 452 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/m
www.eeworm.com/read/230647/4720687
h malloc.h
/***
*malloc.h - declarations and definitions for memory allocation functions
*
* Copyright (c) 1985-1999, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Contains the func
www.eeworm.com/read/229812/4741017
mh malloc.mh
/*
* malloc.h Memory allocation functions
*
:include crwat.sp
*/
#ifndef _MALLOC_H_INCLUDED
#define _MALLOC_H_INCLUDED
:include readonly.sp
:include cpluspro.sp
#ifndef _COMDEF_H_INC
www.eeworm.com/read/229812/4744660
c malloc.c
#include
void main()
{
char *buffer;
buffer = (char *)malloc( 80 );
if( buffer != NULL ) {
/* body of program */
free( buffer );
}
}