* Frontend emulation of backend memory management functions. Useful for * programs that compile backend files. */
| 113 | * programs that compile backend files. |
| 114 | */ |
| 115 | void * |
| 116 | palloc(Size size) |
| 117 | { |
| 118 | return pg_malloc_internal(size, 0); |
| 119 | } |
| 120 | |
| 121 | void * |
| 122 | palloc0(Size size) |