mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-25 09:25:47 +00:00
15 lines
278 B
Objective-C
15 lines
278 B
Objective-C
//
|
|
// EXTScope.m
|
|
// extobjc
|
|
//
|
|
// Created by Justin Spahr-Summers on 2011-05-04.
|
|
// Copyright (C) 2012 Justin Spahr-Summers.
|
|
// Released under the MIT license.
|
|
//
|
|
|
|
#import "EXTScope.h"
|
|
|
|
void ext_executeCleanupBlock (__strong ext_cleanupBlock_t *block) {
|
|
(*block)();
|
|
}
|
|
|