diff options
| author | Camille Mougey <commial@gmail.com> | 2016-06-23 15:32:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-23 15:32:22 +0200 |
| commit | fc97ad6e01f46dde14919e63a9274e7832624f0c (patch) | |
| tree | 57645ac907f81d2add5828197d23aaab0b0e14fd | |
| parent | c10d7489b42390af251e571ab7dde9d91fd55cd3 (diff) | |
| parent | 8f222365de1c570a760355429622707e846d36e0 (diff) | |
| download | miasm-fc97ad6e01f46dde14919e63a9274e7832624f0c.tar.gz miasm-fc97ad6e01f46dde14919e63a9274e7832624f0c.zip | |
Merge pull request #381 from serpilliere/missing_proto
VM: fix function declaration
| -rw-r--r-- | miasm2/jitter/vm_mngr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/jitter/vm_mngr.h b/miasm2/jitter/vm_mngr.h index 76b1c0dd..fb0a3c92 100644 --- a/miasm2/jitter/vm_mngr.h +++ b/miasm2/jitter/vm_mngr.h @@ -205,6 +205,7 @@ unsigned int umul16_hi(unsigned short a, unsigned short b); uint64_t rot_left(uint64_t size, uint64_t a, uint64_t b); uint64_t rot_right(uint64_t size, uint64_t a, uint64_t b); unsigned int rcl_rez_op(unsigned int size, unsigned int a, unsigned int b, unsigned int cf); +unsigned int rcr_rez_op(unsigned int size, unsigned int a, unsigned int b, unsigned int cf); #define UDIV(sizeA) \ |